-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.74 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": "learning-git",
"version": "1.0.0",
"description": "https://zygarios.github.io/learning-git-2/",
"main": "index.js",
"scripts": {
"test": "npm-run-all test:*",
"test:html": "globstar nu-html-checker *.html",
"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.scss js/script.js",
"init:gitignore": "curl https://raw.githubusercontent.com/github/gitignore/master/Node.gitignore -o .gitignore",
"build": "npm-run-all build:* test",
"build:clean": "rimraf css/*.css",
"build:sass": "node-sass --output-style compact -o css sass",
"build:autoprefixer": "autoprefixer-cli css/style.css",
"build-dev:sass": "node-sass --output-style expanded --source-map true -o css sass",
"watch": "npm-run-all build -p watch:*",
"watch:browsersync": "browser-sync start --server --files css/*.css *.html js/*.js",
"watch:sassprefixer": "onchange -d 100 sass/style.scss -- node-sass --output-style expanded --source-map true -o css sass/style.scss && autoprefixer-cli css/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zygarios/learning-git.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zygarios/learning-git/issues"
},
"homepage": "https://github.com/zygarios/learning-git#readme",
"devDependencies": {
"autoprefixer-cli": "^1.0.0",
"browser-sync": "^2.26.3",
"globstar": "^1.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.5",
"nu-html-checker": "^0.1.0",
"onchange": "^5.1.2",
"rimraf": "^2.6.2"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}