-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "tenhud",
"version": "0.0.3",
"description": "",
"main": "lib/index.js",
"bin": {
"tenhud": "lib/index.js"
},
"scripts": {
"clean": "rimraf lib",
"start": "babel-node modules/index.js",
"test": "mocha ./modules/**/*.test.js -r babel-polyfill -w --compilers js:babel-register",
"compile": "babel -d lib modules",
"prepublish": "npm run clean && npm run compile"
},
"author": "Vladimir Danchenkov <vladimir.danchenkov@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vdanchenkov/tenhud.git"
},
"files": [
"lib"
],
"dependencies": {
"babel-polyfill": "^6.13.0",
"chalk": "^1.1.3",
"http-proxy": "^1.14.0",
"pcap": "git+https://github.com/mranney/node_pcap.git",
"ramda": "^0.22.0",
"redux": "^3.5.2",
"seamless-immutable": "^6.1.1",
"terminal-kit": "^0.24.21",
"xml-parser": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^3.0.1",
"rimraf": "^2.5.4"
}
}