-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (44 loc) · 1.1 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
{
"name": "electron-shadermonki",
"version": "1.0.0",
"description": "A research Electron app",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-packager . --arch=all",
"watch-js": "watchify main.js -o bundle.js -dv",
"build-js": "browserify main.js > bundle.js",
"test": "tape test/loader-osgjs.js",
"pkg-postprocess": "tape test/pkg-postprocess.js",
"package-build": "tape test/package-build.js"
},
"repository": "https://github.com/gameknife/electron-shadermonki",
"keywords": [
"Electron",
"Shader"
],
"author": "gameKnife",
"license": "MIT",
"devDependencies": {
"electron": "^1.4.1",
"electron-packager": "^8.2.0",
"browserify": "^13.1.1",
"watchify": "^3.7.0",
"tape": "~2.3.2"
},
"build": {
"appId": "gameknife.shadermonki",
"mac": {
"category": "gameknife.app.category.utils"
},
"win": {
"iconUrl": "(windows-only) https link to icon"
}
},
"dependencies": {
"fs-extra": "^1.0.0",
"bluebird": "^3.4.6",
"fs-promise": "^1.0.0",
"gl-matrix": "2.3.2"
}
}