-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "sciencefair-repo",
"version": "1.0.7",
"description": "container repo for sciencefair app src and build tools",
"scripts": {
"pack": "electron-builder --dir",
"build": "electron-builder",
"buildall": "electron-builder -mwl",
"buildlinux": "electron-builder -l",
"buildosx": "electron-builder -m",
"buildappveyor": "electron-builder -w --ia32 --x64",
"postinstall": "which electron-rebuild && electron-rebuild",
"start": "electron app/index.js",
"dev": "SCIENCEFAIR_DEVMODE=true electron app/index.js",
"deploysite": "cd site && npm run build && cd .. && gh-pages -d site/dist",
"doctor": "electron ./scripts/doctor.js",
"test": "standard"
},
"engines": {
"node": "8.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforscience/sciencefair.git"
},
"author": {
"name": "Code for Science",
"url": "https://codeforscience.org"
},
"license": "MIT",
"devDependencies": {
"cross-zip": "^2.1.3",
"dat": "^13.9.0",
"electron": "^3.0.4",
"electron-builder": "^20.28.4",
"electron-rebuild": "^1.6.0",
"gh-pages": "^1.0.0",
"minimist": "^1.2.0",
"node-gyp-build": "^3.2.0",
"rimraf": "^2.5.2",
"standard": "^12.0.1",
"temporary": "^0.0.8"
},
"standard": {
"ignore": [
"app/client/lib"
]
}
}