forked from alexwforsythe/code-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 903 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
{
"name": "code-blocks",
"version": "1.4.2",
"repository": "https://github.com/alexwforsythe/code-blocks",
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"devDependencies": {
"@google/clasp": "1.6.3",
"browserify": "16.2.3",
"clean-css-cli": "4.2.1",
"highlight.js": "9.13.1",
"jquery": "3.3.1",
"juice": "5.0.0",
"uglify-es": "3.3.9",
"uglifyify": "5.0.1"
},
"scripts": {
"clean": "rm -rf dist/*",
"build:gas": "./build.sh gas",
"build:js": "./build.sh js",
"build:static": "./build.sh static",
"build": "npm run build:gas && npm run build:js && npm run build:static",
"pull": "clasp pull",
"pushOnly": "clasp push",
"push:js": "npm run build:js && npm run pushOnly",
"push:gas": "npm run build:gas && npm run pushOnly",
"prepush": "npm run clean && npm run build",
"push": "npm run pushOnly"
}
}