forked from alexwforsythe/code-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "code-blocks",
"version": "1.4.0",
"repository": "https://github.com/alexwforsythe/code-blocks",
"license": "MIT",
"config": {
"scriptName": "Code Blocks"
},
"engines": {
"node": ">=4.2.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"clean-css-cli": "^4.1.6",
"google-apps-script": "^2.7.0",
"highlight.js": "^9.12.0",
"jquery": "^3.2.1",
"juice": "3.0.1",
"uglify-es": "^3.0.27",
"uglifyify": "^4.0.3"
},
"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",
"link": "cd dist && gas link \"${npm_package_config_scriptName}\"",
"pushOnly": "cd dist && gas 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 && npm run link",
"push": "npm run pushOnly"
}
}