forked from mozilla/mofo-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
50
51
{
"name": "mofo-bootstrap",
"version": "4.1.0",
"homepage": "https://github.com/mozilla/mofo-bootstrap",
"engines": {
"node": "^6.0.0",
"npm": "^3.0.0"
},
"bugs": "https://github.com/mozilla/mofo-bootstrap/issues",
"description": "Mozilla Foundation's Bootstrap 4 theme.",
"keywords": [
"bootstrap",
"mozilla",
"css",
"sass",
"theme"
],
"repository": "https://github.com/mozilla/mofo-bootstrap",
"scripts": {
"preversion": "git checkout master && git pull origin master && npm test",
"version": "npm run build",
"postversion": "npm publish && git push origin master --tags && npm run deploy",
"start": "npm run build && run-p server watch:**",
"build": "shx mkdir -p dest/css/ && run-p build:**",
"build:pug": "pug src/index.pug -o demo",
"build:scss": "node-sass src/scss/mofo-bootstrap.scss dest/css/mofo-bootstrap.css && node-sass src/scss/demo.scss demo/css/demo.css",
"server": "live-server ./demo --port=1979",
"watch:pug": "chokidar 'src/index.pug' -c 'npm run build:pug'",
"watch:scss": "chokidar 'src/scss/**/*.scss' -c 'npm run build:scss'",
"test": "npm run test:sass",
"test:sass": "sass-lint -c .sass-lint.yml --verbose --no-exit src/scss/**/*.scss",
"deploy": "node deploy.js"
},
"author": "Mozilla",
"license": "MPL-2.0",
"dependencies": {
"bootstrap": "^4.1.3"
},
"devDependencies": {
"chokidar": "^1.4.2",
"chokidar-cli": "^1.2.0",
"live-server": "^1.0.0",
"mofo-style": "^2.3.0",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.1",
"pug-cli": "^1.0.0-alpha6",
"sass-lint": "^1.5.0",
"shelljs": "^0.7.0",
"shx": "^0.2.0"
}
}