-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "arp-watchdog",
"version": "0.1.0",
"description": "ARP Watchdog - ARP poisoning/spoofing detector",
"main": "main.js",
"scripts": {
"clean": "rm -rf ./build/*",
"copy": "cp ./src/index.html ./build/index.html && cp ./src/index.css ./build/index.css",
"build": "npm run clean && npm run copy && tsc",
"start": "npm run build && electron .",
"pack:win": "build -w --x64 --dir",
"pack:linux": "build -l --x64 --dir",
"package": "npm run pack:win && npm run pack:linux",
"dist": "build -wl --x64"
},
"repository": "https://github.com/durasj/arp-watchdog",
"keywords": [
"ARP",
"poisoning",
"watchdog",
"watching",
"spoofing",
"monitoring",
"detection"
],
"author": "Jakub Duras<jakub@duras.me>",
"license": "MIT",
"devDependencies": {
"@types/electron": "^1.4.33",
"@types/node": "^7.0.8",
"@types/node-notifier": "0.0.28",
"@types/react": "^15.0.22",
"@types/react-dom": "^15.5.0",
"@types/react-redux": "^4.4.40",
"devtron": "^1.4.0",
"electron": "~1.6.2",
"electron-builder": "^15.6.2",
"electron-rebuild": "^1.5.7",
"redux-devtools": "^3.4.0",
"tslint": "~4.5.1",
"tslint-microsoft-contrib": "^4.0.1",
"typescript": "^2.2.1"
},
"dependencies": {
"@types/prop-types": "^15.5.1",
"cap": "^0.1.2",
"electron-debug": "^1.1.0",
"material-components-web": "^0.6.0",
"node-notifier": "^5.1.2",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"redux": "^3.6.0"
},
"build": {
"appId": "arpwd.duras.me",
"files": [
"**/*",
"!.git${/*}",
"!.vscode${/*}",
"!src${/*}"
],
"asarUnpack": [
"config.json",
"res${/*}"
],
"directories": {
"buildResources": "icons"
}
}
}