-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.57 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
{
"name": "task-runner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init-project": "npm install && npm-run-all init:*",
"init:dirs": "mkdirp sass css vendor images js",
"init:files": "touch README.md index.html sass/style.css 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",
"build": "npm-run-all build:* test",
"build:sass": "sass --style=compressed --no-source-map sass:css",
"build:autoprefixer": "postcss css/*.css --use autoprefixer -d css",
"build-dev": "npm-run-all build-dev:sass build:autoprefixer",
"build-dev:sass": "sass --style=expanded --source-map sass:css",
"watch": "npm-run-all build build-dev -p watch:*",
"watch:browsersync": "browser-sync start --server --files \"css/*.css\" \"*html\"",
"watch:sassprefixer": "onchange sass/*.scss -- npm run build-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sicArchitect/task-runner.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sicArchitect/task-runner/issues"
},
"homepage": "https://github.com/sicArchitect/task-runner#readme",
"devDependencies": {
"autoprefixer": "^10.2.4",
"browser-sync": "^2.27.7",
"html-validate": "^6.2.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"sass": "^1.49.0"
}
}