-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.18 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
{
"name": "njmcode-folio",
"version": "1.0.0",
"description": "Simple folio one-pager",
"main": "src/js/index.js",
"scripts": {
"autoprefixer": "postcss -u autoprefixer -b 'last 2 versions' -r dist/css/*",
"imagemin": "imagemin --plugin=pngquant assets/img/* --out-dir=dist/assets/img/",
"styles": "node-sass src/scss --output=dist/css/ --output-style=compressed && npm run autoprefixer",
"scripts": "uglifyjs src/js/*.js -m -c -o dist/js/app.min.js",
"build": "npm run scripts && npm run styles && npm run imagemin",
"watch": "nodemon -e scss --watch src/scss -x \"npm run scripts && npm run styles\"",
"start": "npm run build && npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/njmcode/njmcode-folio.git"
},
"author": "njmcode",
"license": "MIT",
"bugs": {
"url": "https://github.com/njmcode/njmcode-folio/issues"
},
"homepage": "https://github.com/njmcode/njmcode-folio#readme",
"devDependencies": {
"autoprefixer": "^6.3.7",
"imagemin-cli": "^3.0.0",
"imagemin-pngquant": "^5.0.0",
"node-sass": "^3.8.0",
"nodemon": "^1.9.2",
"postcss-cli": "^2.5.2",
"uglify-js": "^2.7.0"
}
}