-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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": "netmap.js",
"version": "1.0.1",
"description": "Fast browser-based network discovery module",
"main": "netmap.js",
"scripts": {
"test": "eslint *.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serain/netmap.js.git"
},
"keywords": [
"network",
"discovery",
"mapping",
"port",
"scan"
],
"author": "alxk (serain)",
"license": "MIT",
"bugs": {
"url": "https://github.com/serain/netmap.js/issues"
},
"homepage": "https://github.com/serain/netmap.js#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.2",
"eslint": "^5.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.0.1"
},
"dependencies": {
"es6-promise-pool": "^2.5.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}