forked from twbs/bootstrap-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "bootstrap-sass",
"version": "3.13.0",
"description": "bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.",
"main": "assets/javascripts/bootstrap.js",
"style": "assets/stylesheets/_bootstrap.scss",
"sass": "assets/stylesheets/_bootstrap.scss",
"files": [
"assets",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/talis/bootstrap-sass"
},
"contributors": [
"Thomas McDonald",
"Tristan Harward",
"Peter Gumeson",
"Gleb Mazovetskiy"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/talis/bootstrap-sass/issues"
},
"devDependencies": {
"ejs": "~2.4.2",
"es-dev-server": "^1.57.1",
"npm-run-all": "^4.1.5",
"sass": "^1.35.2",
"standard-version": "^9.3.0"
},
"scripts": {
"build:scripts": "",
"build:styles:compressed": "npx sass app.scss dist/app.min.css --style=compressed",
"build:styles:uncompressed": "npx sass app.scss dist/app.css",
"build": "npm run build:styles:compressed && npm run build:styles:uncompressed",
"serve": "es-dev-server --watch --app-index index.html",
"start": "run-p watch serve",
"watch": "npx sass --watch app.scss dist/app.css",
"prerelease": "npm run build",
"release": "git add dist/ && standard-version -a"
}
}