This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
74 lines (74 loc) · 1.56 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
73
74
{
"name": "apparatus",
"version": "0.1.8",
"description": "an IoT network security analysis and visualization tool",
"main": "./app/main.js",
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development electron .",
"lint": "prettier --no-semi --single-quote --write './app/src/**/*.js' && standard './app/src/**/*.js' --fix",
"postinstall": "electron-builder install-app-deps",
"dist": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Or3stis/apparatus"
},
"keywords": [
"Electron",
"network",
"security"
],
"author": "or3stis",
"license": "MIT",
"bugs": {
"url": "https://github.com/Or3stis/apparatus/issues"
},
"homepage": "https://github.com/Or3stis/apparatus/#readme",
"engines": {
"node": ">=10.6.0"
},
"build": {
"productName": "ASTo",
"appId": "org.or3stis.asto",
"mac": {
"target": "dmg"
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "rpm",
"arch": [
"x64"
]
}
]
},
"win": {
"icon": "build/icon.png"
}
},
"dependencies": {
"cytoscape": "^3.5.2",
"jsonfile": "^5.0.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"prettier": "^1.16.4",
"standard": "^12.0.1"
}
}