-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "wifi_watcher",
"version": "0.1.0",
"description": "Description that needs to be changed some time soon",
"license": "AGPL-3.0",
"scripts": {
"test": "mocha --compilers js:babel-core/register"
},
"babel": {
"presets": [
"stage-3",
"latest"
]
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-3": "^6.24.1",
"express": "^4.15.4",
"pcap": "git+https://github.com/mranney/node_pcap.git",
"pug": "^2.0.0-rc.4"
},
"devDependencies": {
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.5.3",
"sinon": "^3.3.0",
"sinon-chai": "^2.13.0",
"supertest": "^3.0.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
}
}