-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "grpc-eventstore",
"description": "An Event Store with a gRPC interface",
"version": "0.0.0",
"private": true,
"main": "lib/index.js",
"scripts": {
"build:dev:image": "./commands/build:dev:image.sh",
"dev:unit:tests": "./commands/unit:tests.sh live",
"dev:inmemorydb:tests": "./commands/inmemorydb:tests.sh live",
"transpile": "./commands/transpile.sh",
"test": "./commands/transpile.sh && ./commands/test.sh"
},
"dependencies": {
"bignumber.js": "^4.1.0",
"eventemitter3": "^2.0.3",
"grpc": "^1.7.1",
"lodash": "^4.17.4",
"rxjs": "^5.5.2",
"seamless-immutable": "^7.1.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"should": "^13.1.2",
"sinon": "^4.0.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": ["standard"],
"rules": {
"arrow-parens": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"indent": [
"error",
2,
{
"MemberExpression": "off",
"ObjectExpression": "first",
"SwitchCase": 1
}
]
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": true
}
}
]
],
"plugins": ["transform-object-rest-spread"]
}
}