-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·59 lines (59 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
{
"name": "tonalite",
"version": "2.0.0",
"description": "DMX lighting control system",
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Warning: no test specified\" && exit 0",
"build-addon": "node-gyp rebuild",
"clean-addon": "node-gyp clean",
"build-linux": "pkg . -t node10-linux",
"build-win": "pkg . -t node10-win",
"build-macos": "pkg . -t node10-macos",
"build-docs-pdf": "cd docs && gitbook build . dist/ && gitbook pdf . documentation.pdf && cd ../",
"build-docs": "cd docs && gitbook build . dist/ && cd ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnroper100/tonalite.git"
},
"author": "John Roper",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/johnroper100/tonalite/issues"
},
"homepage": "https://github.com/johnroper100/tonalite#readme",
"dependencies": {
"artnet": "^1.4.0",
"color": "^3.1.1",
"compression": "^1.7.4",
"drivelist": "^8.0.0",
"e131": "^1.1.3",
"express": "^4.17.1",
"express-fileupload": "^1.1.4",
"moment": "^2.24.0",
"qrcode": "^1.3.3",
"sanic.js": "^1.1.0",
"serve-favicon": "^2.5.0",
"sleep": "^6.0.0",
"socket.io": "^2.2.0",
"unzipper": "^0.9.15"
},
"devDependencies": {
"node-addon-api": "^1.6.3",
"node-gyp": "^4.0.0",
"pkg": "^4.4.0"
},
"pkg": {
"assets": [
"static/**/*",
"docs/dist/**/*",
"index.min.html",
"presets.min.html",
"open-source-licenses.txt"
]
},
"gypfile": true
}