-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 931 Bytes
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
{
"main": "index.html",
"name": "screen_break",
"version": "0.3.3",
"devDependencies": {
"browserify": "~13.0.0",
"eslint": "^7.22.0",
"node-lessify": "^0.2.0",
"uglify-js": "~2.6.2",
"watchify": "^3.2.2"
},
"scripts": {
"build": "browserify js/app.js --no-detect-globals --bare -t node-lessify | uglifyjs -o build/build.js -m",
"dev-build": "watchify js/app.js --no-detect-globals --bare -t node-lessify -o build/build.js -v",
"test": "watchify js/test/testApp.js -o build/testBuild.js -t node-lessify -v"
},
"window": {
"title": "node-webkit app",
"icon": "appIcon.png",
"show_in_taskbar": false,
"toolbar": false,
"transparent": true,
"frame": false,
"width": 408,
"height": 42,
"position": "center",
"min_width": 233,
"min_height": 42
}
}