-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "reaves",
"version": "0.2.1",
"description": "A Javascript implementation of the Entity-Attribute-Value model and the event sourcing pattern for Node.js",
"main": "lib/index.js",
"scripts": {
"redis:start": "docker run --detach --name reaves --publish 6379:6379 redis:2.8.9",
"redis:stop": "docker stop reaves; docker rm reaves",
"test": "npm run redis:start && jest --runInBand; npm run redis:stop",
"test:watch": "npm run redis:start && jest --runInBand --watch; npm run redis:stop",
"test:coverage": "npm run redis:start && jest --coverage --runInBand; npm run redis:stop",
"docs": "rimraf docs && jsdoc --configure jsdoc.json"
},
"keywords": [
"entity attribute value",
"event sourcing",
"event store",
"redis"
],
"author": "Adriano Di Giovanni <me@adrianodigiovanni.com> (http://adrianodigiovanni.com/)",
"license": "MIT",
"devDependencies": {
"async": "^2.6.1",
"docdash": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"randomstring": "^1.1.5",
"redis": "^2.8.0",
"rimraf": "^2.6.2",
"uuid": "^3.3.2"
},
"dependencies": {
"luaload": "^0.1.0"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriano-di-giovanni/reaves.git"
},
"bugs": {
"url": "https://github.com/adriano-di-giovanni/reaves/issues"
},
"homepage": "https://github.com/adriano-di-giovanni/reaves#readme",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}