-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.87 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
48
49
{
"name": "10.3",
"version": "1.0.0",
"description": "Zadanie 10.1",
"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/scripts.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/*",
"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:sass": "node-sass --output-style expanded --source-map true -o css sass --watch",
"watch:sassprefixer": "node-sass --output-style expanded --source-map true -o css sass onchange -d 100 sass/* -- autoprefixer-cli -o css/style.css",
"watch:prefixer": "onchange -d 100 sass/style.scss -- autoprefixer-cli css/style.css",
"watch:browsersync": "browser-sync start --server --files css/*.css *.html js/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wojtekboj/modul_10.git"
},
"keywords": [],
"author": "Wojciech Bojarczuk",
"license": "ISC",
"bugs": {
"url": "https://github.com:wojtekboj/modul_10/issues"
},
"homepage": "https://github.com:wojtekboj/modul_10#readme",
"devDependencies": {
"autoprefixer-cli": "^1.0.0",
"browser-sync": "^2.24.4",
"globstar": "^1.0.0",
"hoek": "^5.0.3",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"nu-html-checker": "^0.1.0",
"onchange": "^4.0.0",
"watch": "^1.0.2"
},
"dependencies": {
"flickity-hash": "^1.0.3"
}
}