-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.27 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
{
"name": "easy-source",
"version": "2.0.3",
"description": "From zero to event sourcing",
"author": "Chris Baker <[email protected]>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bakerface/easy-source.git"
},
"scripts": {
"test": "xo && nyc --check-coverage _mocha --recursive",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
},
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100,
"reporter": [
"lcov",
"text"
]
},
"xo": {
"envs": [
"mocha",
"node"
],
"space": true,
"rules": {
"array-bracket-spacing": [
"error",
"always"
],
"brace-style": [
"error",
"stroustrup"
],
"max-params": [
"off"
],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"object-curly-spacing": [
"error",
"always"
]
}
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"xo": "^0.17.1"
},
"dependencies": {
"bluebird": "^3.5.0"
}
}