forked from EinsteinsWorkshop/BlocksCAD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 957 Bytes
/
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
{
"name": "blockscad",
"version": "1.0.1",
"description": "BlocksCAD - Easy, Open-Source Solid CAD for Everyone!",
"main": "app://blockscad/index.html",
"chromium-args": "--data-path='data/' --enable-webgl --ignore-gpu-blacklist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/jshint blockly blockscad",
"build-standalone": "node build-standalone.js",
"clean-standalone": "rm -rf node_modules build"
},
"repository": {
"type": "git",
"url": "git://github.com/einsteinsworkshop/blockscad.git"
},
"bugs": {
"url": "https://github.com/einsteinsworkshop/blockscad/project/issues"
},
"author": "",
"single-instance": true,
"window": {
"toolbar": false,
"title": "BlocksCAD",
"width": 1900,
"height": 1200,
"icon": "ewicon.png"
},
"license": "GPL-3.0+",
"devDependencies": {
"jshint": "^2.8.0",
"nw-builder": "^2.0.2"
}
}