-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.7 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
36
37
38
39
40
41
42
{
"name": "npmTooling",
"version": "0.0.1",
"description": "Assets for my Tooling with NPM Scripts course at Lynda.com",
"repository": {
"type": "git",
"url": "https://github.com/planetoftheweb/npmtooling.git"
},
"author": "Ray Villalobos",
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"start": "npm-run-all --parallel dev:*",
"dev:sass-dev": "node-sass --watch process/scss --output-style expanded --source-map true process/scss/style.scss --output builds/development/css",
"dev:js-transform": "babel process/js/**/*.js --watch --out-file builds/development/js/script.js --source-maps",
"dev:serve": "live-server builds/development",
"build": "npm-run-all prod:*",
"prod:setup": "mkdirp builds/production/js",
"prod:sass-dev": "node-sass --output-style compressed process/scss/style.scss --output builds/production/css",
"prod:js-uglify": "uglifyjs builds/development/js/script.js --compress --mangle --output builds/production/js/script.js",
"prod:html-minify": "html-minifier --collapse-whitespace builds/development/index.html > builds/production/index.html",
"prod:img-compress": "imagemin builds/development/images/**/*.* --out-dir=builds/production/images --plugin=jpeg-recompress --plugin=svgo",
"prod:serve": "live-server builds/production"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"html-minifier": "^3.0.2",
"imagemin": "^5.2.2",
"imagemin-cli": "^3.0.0",
"imagemin-jpeg-recompress": "^5.1.0",
"imagemin-svgo": "^5.1.0",
"live-server": "^1.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^3.8.0",
"npm-run-all": "^2.3.0",
"uglifyjs": "^2.4.10"
}
}