-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "networkjs",
"version": "0.1.1",
"description": "NetworkX Clone in JavaScript",
"main": "./lib/index.js",
"man": "./docs/networkjs.1",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive test/",
"compile": "babel -d lib/ src/ && babel cli.js --out-file lib/cli.js",
"prepublish": "npm run compile"
},
"author": "Koustuv Sinha",
"license": "MIT",
"dependencies": {
"babel-core": "^6.17.0",
"babel-polyfill": "^6.16.0",
"big.js": "^3.1.3",
"chalk": "^1.1.3",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^2.9.0",
"csvtojson": "^1.0.3",
"heap": "^0.2.6",
"json2csv": "^3.7.0",
"lodash": "^4.16.4",
"progress": "^1.1.8"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/koustuvsinha/networkjs"
},
"bin": {
"networkjs": "./lib/cli.js"
}
}