forked from kevdonk/devsummit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.01 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "chrome-dev-summit-2016",
"version": "4.0.12",
"description": "Chrome Dev Summit 2016",
"main": "index.js",
"scripts": {
"postinstall": "(cd scripts/third_party/vrview; npm i)",
"test": "lighthouse",
"bump": "npm version patch",
"build": "npm run build-css && npm run build-js && npm run build-vr && npm run build-resource-list",
"build-resource-list": "node ./build/build-resource-list.js",
"make-css-folder": "mkdirp static/styles",
"build-css": "npm run make-css-folder && node-sass sass/ -o static/styles && npm run clean-css",
"clean-css": "./build/clean-css.js",
"build-js": "rollup -c && babel static/scripts/bootstrap.js --presets babel-preset-babili --out-file static/scripts/bootstrap.js",
"build-vr": "npm run build-vr-deps && npm run build-vr-dev && babel static/scripts/webvr.js --presets babel-preset-babili --out-file static/scripts/webvr.js",
"build-vr-deps": "(cd scripts/third_party/vrview; npm run build && npm run build-api) && cp -r scripts/third_party/vrview static/third_party",
"build-vr-dev": "cat scripts/third_party/vrview/build/vrview.min.js scripts/webvr.js > static/scripts/webvr.js",
"watch": "npm run build && parallelshell 'npm run watch-sass' 'npm run watch-js'",
"watch-js": "rollup -wc",
"watch-sass": "npm run make-css-folder && node-sass -w sass/ -o static/styles",
"optimize-images": "imageoptim --directory static/images",
"release": "npm run bump && npm run build && npm run optimize-images"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleChrome/devsummit/"
},
"keywords": [
"chrome"
],
"author": "Paul Lewis",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-babili": "0.0.3",
"clean-css": "^3.4.19",
"imageoptim-cli": "^1.14.8",
"mkdirp": "^0.5.1",
"node-sass": "^3.10.0",
"parallelshell": "^2.0.0",
"rollup": "^0.36.0",
"rollup-plugin-cleanup": "^0.1.4",
"rollup-watch": "^2.5.0",
"walk": "^2.3.9"
}
}