-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 940 Bytes
/
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
{
"name": "knotsjs",
"version": "1.0.0",
"description": "Untie the knots in your source code",
"license": "GPL-3.0",
"homepage": "",
"keywords": [
"dependencies",
"graph"
],
"author": {
"name": "Joris MASSON",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Hyzual/knotsjs.git"
},
"bugs": {
"url": "https://github.com/Hyzual/knotsjs/issues"
},
"engines": {
"node": ">=0.10"
},
"main": "lib/index.js",
"dependencies": {
"acorn": "^3.0.4",
"bluebird": "^3.3.5",
"escope": "^3.6.0",
"jsgraph": "^0.6.1",
"lodash": "^4.6.1",
"mz": "^2.4.0",
"recursive-readdir": "^2.0.0",
"yargs": "^4.3.2"
},
"devDependencies": {
"istanbul": "^0.4.3",
"jasmine": "^2.4.1"
},
"scripts": {
"test": "jasmine test/**/*-test.js",
"coverage": "istanbul cover test/**/*-test.js && istanbul report"
}
}