-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
34 lines (34 loc) · 982 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": "code-blocks",
"version": "1.4.2",
"repository": "https://github.com/alexwforsythe/code-blocks",
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"devDependencies": {
"@google/clasp": "2.3.0",
"@types/google-apps-script": "1.0.2",
"browserify": "16.5.0",
"clean-css-cli": "4.3.0",
"highlight.js": "9.16.2",
"highlightjs-graphql": "^1.0.2",
"jquery": "3.4.1",
"juice": "5.2.0",
"uglify-es": "3.3.9",
"uglifyify": "5.0.2"
},
"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"
}
}