-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 2.4 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
43
44
45
46
47
{
"name": "hoodie-css-framework",
"version": "1.0.0",
"repository": "https://github.com/hoodiehq/hoodie-css/",
"devDependencies": {
"@lewiscowper/markdown-chalk": "^0.1.2",
"autoprefixer": "^6.0.2",
"browser-sync": "^2.9.11",
"casperjs": "^1.1.0-beta3",
"kss": "^2.1.0",
"live-server": "^0.8.1",
"node-sass": "^3.3.2",
"npm-run-all": "^1.2.11",
"phantomcss": "^0.10.4",
"phantomjs": "^1.9.18",
"postcss": "^5.0.4",
"postcss-cli": "^2.1.0",
"resemblejs": "^2.0.1",
"sass-lint": "^1.2.0",
"serve-static": "^1.10.0",
"slimerjs": "^0.9.6",
"uglify-js": "^2.5.0",
"watch": "^0.16.0"
},
"scripts": {
"help": "markdown-chalk --input DEVELOPMENT.md",
"start": "npm-run-all --parallel dev serve",
"serve": "live-server dist/ --port=9090",
"dev": "npm-run-all dev:css",
"dev:css": "watch 'npm-run-all dev:sass dev:autoprefix' tmp_src/sass --ignoreDotFiles --ignoreUnreadable",
"dev:sass": "node-sass --source-map tmp_src/css/hoodie.css.map --output-style nested tmp_src/sass/base.scss tmp_src/css/hoodie.css",
"dev:autoprefix": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" --output tmp_src/css/hoodie.pref.css tmp_src/css/hoodie.css",
"prod": "npm-run-all prod:*",
"prod:sass": "node-sass --output-style compressed tmp_src/sass/base.scss src/css/prod/hoodie.min.css",
"prod:javascript": "uglifyjs src/js/jquery.min.js src/js/icheck.min.js src/js/main.js --output src/js/prod/hoodie.min.js",
"prod:autoprefix": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" --output src/css/prod/hoodie.min.pref.css src/css/prod/hoodie.min.css",
"docs": "kss-node --source tmp_src/sass --homepage ../../styleguide.md",
"test": "npm-run-all test:*",
"test:lint": "sass-lint --verbose --config .sass-lint.yml tmp_src/sass/*",
"test:visuals": "./visual-regression-testing.sh",
"test:visuals:hood.ie:server": "node hood_ie-server.js",
"test:visuals:hood.ie:tests": "npm-run-all test:visuals:hood.ie:small test:visuals:hood.ie:medium test:visuals:hood.ie:large",
"test:visuals:hood.ie:small": "casperjs test visual-regression-tests/small-viewports.js --engine=slimerjs",
"test:visuals:hood.ie:medium": "casperjs test visual-regression-tests/medium-viewports.js --engine=slimerjs",
"test:visuals:hood.ie:large": "casperjs test visual-regression-tests/large-viewports.js --engine=slimerjs"
}
}