-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.54 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": "task-runner",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"init-project": "npm install && npm-run-all init:*",
"init:dirs": "mkdirp sass css vendor image js",
"init:files": "touch README.md index.html sass/style.scss js/script.js",
"init:gitignore": "curl https://raw.githubusercontent.com/github/gitignore/master/Node.gitignore -o .gitignore",
"test": "npm-run-all test:*",
"test:html": "html-validate *.html",
"test:js": "eslint js/",
"test:scss": "stylelint sass/",
"build": "npm-run- all build:* npm run test",
"build:sass": "node-sass --output-style compact -o css sass",
"build:autoprefixer": "postcss css/*.css --use autoprefixer -d css",
"build-dev": "npm-run-all build-dev:sass build:autoprefixer",
"build-dev:sass": "node-sass --output-style expanded --source-map true -o css sass",
"watch": "npm-run-all build:* build-dev -p watch:*",
"watch:browsersync": "browser-sync start --server --files \"css/*.css\" \"*.html\" \"js/*.js\"",
"watch:sassprefixer": "onchange sass/*.scss -- npm run build-dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"autoprefixer": "^10.2.4",
"autoprefixer-cli": "^1.0.0",
"browser-sync": "^2.27.7",
"eslint": "^8.2.0",
"html-validate": "^6.1.0",
"mkdirp": "^1.0.4",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"stylelint": "^14.1.0",
"stylelint-scss": "^4.0.0"
}
}