-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "webgl_editron",
"version": "2.1.3",
"description": "Live editor app for WebGL and GLSL with electron.",
"main": "./app/server/main.js",
"scripts": {
"debug": "node index.js --development",
"build": "node index.js --production",
"package:win": "npm-run-all build package:windows",
"package:mac": "npm-run-all build package:macos",
"package:dmg": "npm-run-all build package:macosdmg",
"package:windows": "node build-win.js",
"package:macos": "node build-mac.js",
"package:macosdmg": "node build-mac-dmg.js",
"start": "npm-run-all debug",
"jest": "jest",
"test:watch": "jest --watch",
"test:silent": "jest --silent",
"test:coverage": "jest --coverage",
"test:open": "http-server ./coverage/lcov-report -op 9090",
"test": "npm-run-all test:coverage test:open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doxas/webgl_editron.git"
},
"author": "doxas",
"license": "MIT",
"bugs": {
"url": "https://github.com/doxas/webgl_editron/issues"
},
"homepage": "https://github.com/doxas/webgl_editron#readme",
"dependencies": {
"connect": "^3.7.0",
"electron-connect": "^0.6.3",
"serve-static": "^1.14.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"electron": "^4.2.12",
"electron-builder": "^22.9.1",
"http-server": "^0.11.1",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}