-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.62 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": "golden-layout",
"version": "1.0.0",
"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:sass": "node-sass --output-style expand --source-map true -o css sass --watch",
"watch:autoprefixer": "onchange -d 100 css/style.css -- autoprefixer-cli -o css/style.prefixed.css css/style.css",
"watch:browser-sync": "browser-sync start -s -w -reload-delay 10 -f css/*.css *.html"
},
"keywords": [],
"author": "pk",
"license": "ISC",
"description": "",
"devDependencies": {
"autoprefixer-cli": "^1.0.0",
"browser-sync": "^2.26.7",
"globstar": "^1.0.0",
"grunt-browser-sync": "^2.2.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"nu-html-checker": "^0.1.0",
"onchange": "^6.0.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"autoprefixer": "^9.6.0",
"bootstrap": "4.0.0-alpha.6",
"jquery": "^3.4.1",
"popper.js": "^1.15.0",
"tether": "^1.4.6"
}
}