-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.19 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
{
"name": "carhartt-styleguide",
"version": "1.0.0",
"description": "A living digital styleguide for the Carhartt brand",
"main": "index.js",
"scripts": {
"scss": "node-sass --output-style compressed -o dist/css src/scss",
"autoprefixer": "postcss dist/css/*.css --use autoprefixer -d build",
"uglify": "mkdir -p dist/js && uglifyjs src/js/*.js -m -o dist/js/app.js && uglifyjs src/js/*.js -m -c -o dist/js/app.min.js",
"build:css": "npm run scss && npm run autoprefixer",
"build:js": "npm run uglify",
"build": "npm run build:css && npm run build:js",
"watch:css": "onchange 'src/scss/*.scss' -- npm run build:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaneray/carharrt-styleguide.git"
},
"keywords": [
"Carhartt",
"styleguide"
],
"author": "The ZaneRay Group",
"license": "ISC",
"bugs": {
"url": "https://github.com/zaneray/carharrt-styleguide/issues"
},
"homepage": "https://github.com/zaneray/carharrt-styleguide#readme",
"devDependencies": {
"node-sass": "^4.14.1",
"onchange": "^7.0.2",
"postcss-cli": "^7.1.1",
"uglify-js": "^3.9.4"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}