-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "Ghost",
"version": "1.3.4",
"description": "App for WASA",
"main": "src/app.js",
"repository": {
"type": "git",
"url": "git://github.com/MojamojaK/ghost.git"
},
"keywords": [
"npm"
],
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec ./src/scripts/test/*.js",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"rebuild": "./node_modules/.bin/electron-rebuild",
"build_mac": "./node_modules/.bin/electron-builder --mac --x64 --config=build-config.json",
"build_win": "./node_modules/.bin/electron-builder --win --x64 --config=build-config.json",
"build_linux": "./node_modules/.bin/electron-builder --linux --x64 --config=build-config.json",
"postinstall": "electron-builder install-app-deps"
},
"author": "Kazuki Fujita <kazukifu@gmail.com>",
"license": "UNLICENSED",
"devDependencies": {
"electron": "*",
"electron-builder": "*",
"electron-packager": "*",
"electron-rebuild": "*",
"mocha": "*",
"standard": "*"
},
"dependencies": {
"@mapbox/geojson-area": "*",
"@mapbox/mbtiles": "*",
"chart.js": "*",
"electron-settings": "*",
"express": "*",
"jquery": "*",
"mapbox-gl": "^0.47.0",
"mv": "*",
"serialport": "*",
"tone": "^0.12.80",
"xbee-api": "*"
},
"homepage": "https://github.com/MojamojaK/WASA-ghost",
"standard": {
"globals": [
"SpeechSynthesisUtterance",
"Audio",
"google"
],
"env": [
"mocha"
]
}
}