-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.43 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"author": "ELLIOTTCABLE (http://ell.io/tt)",
"name": "giraphe",
"version": "2.0.1",
"license": "ISC",
"description": "A exceedingly-generic graph walking API.",
"repository": "ELLIOTTCABLE/giraphe",
"main": "./giraphe.js",
"scripts": {
"test": "./test.sh",
"prepare": "NODE_ENV=development ./build.sh",
"prepublishOnly": "NODE_ENV=production ./build.sh"
},
"directories": {
"lib": "./",
"src": "./",
"test": "./Tests",
"doc": "./Docs",
"coverage": "./Docs/Coverage"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime",
"transform-flow-comments"
],
"sourceMaps": "inline",
"compact": false,
"env": {
"coverage": {
"plugins": [
"espower",
"empower-assert",
"istanbul"
]
},
"test": {
"plugins": [
"espower",
"empower-assert"
]
},
"development": {
"plugins": [
"espower",
"empower-assert"
]
},
"production": {
"plugins": [
"unassert"
]
}
}
},
"nyc": {
"include": [
"giraphe.es6.js"
],
"extension": [
".es6.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"reporter": "none",
"report-dir": "./Docs/Coverage",
"statements": 90,
"branches": 90
},
"mocha": {
"ui": "bdd",
"reporter": "mocha-fivemat-reporter"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"debug": "^2.6.8",
"lodash": "^4.13.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-empower-assert": "^1.3.0",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-flow-comments": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-unassert": "^2.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"mocha": "^3.4.2",
"mocha-fivemat-reporter": "^0.0.9",
"nyc": "^11.0.2",
"power-assert": "^1.4.4",
"prettier": "^2.5.1",
"sinon": "^2.3.5"
}
}