-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 929 Bytes
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
{
"name": "sonar",
"version": "1.0.0",
"description": "",
"main": "sonar.js",
"scripts": {
"lint": "eslint *.js --fix",
"build": "webpack --config webpack.config.js",
"babel": "node ./node_modules/.bin/babel src --out-dir lib",
"test": "node ./node_modules/@babel/node/bin/babel-node.js ./test/test.js",
"start": "node ./node_modules/@babel/node/bin/babel-node.js ./cli/submarine.js"
},
"author": "hmmhmmhm",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/runtime": "^7.1.5",
"babel-loader": "^8.0.4",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"cap": "^0.2.0",
"ip-header": "^0.1.2",
"network": "^0.4.1",
"node-arp": "^1.0.6",
"udp-header": "^0.2.1"
}
}