-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.04 KB
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
{
"name": "digsig",
"version": "1.1.0",
"description": "Dig(ital) Sig(nage) Build Procedure",
"main": "index.js",
"scripts": {
"build": "npm-run-all build:*",
"build:clean": "del-cli build/* static/style/*.map static/style/*.min.css digsig.zip",
"build:less-1": "lessc static/style/core.less static/style/core.css --source-map",
"build:less-2": "csso -i static/style/core.css -o static/style/core.min.css -s static/style/core.min.css.map",
"build:move": "node build_move.js",
"build:unmove": "del-cli build/**/*.less",
"build:zip": "jszip build/ --ignore '**/*.less' -o digsig.zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TenthPres/DigSigs.git"
},
"author": "James Kurtz",
"license": "MIT",
"bugs": {
"url": "https://github.com/TenthPres/DigSigs/issues"
},
"homepage": "https://github.com/TenthPres/DigSigs#readme",
"devDependencies": {
"csso-cli": "^3.0.0",
"del-cli": "^4.0.1",
"jszip-cli": "^1.4.24",
"less": "^4.1.2",
"npm-run-all": "^4.1.5"
}
}