-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.23 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
{
"name": "ng-bootstrap-to-bootstrap-3",
"version": "0.7.0",
"description": "A CSS compatibility patch to make ng-bootstrap work with Bootstrap 3",
"main": "dist/ng-bootstrap-to-bootstrap-3.min.css",
"scripts": {
"clean": "shx rm -rf dist && shx mkdir dist",
"sass-compile": "node-sass src/ng-bootstrap-to-bootstrap-3.scss dist/ng-bootstrap-to-bootstrap-3.min.css --source-map-embed --output-style compressed",
"sass-compile:w": "npm run sass-compile -- -w",
"prestart": "npm run clean",
"start": "npm run sass-compile:w",
"predist": "npm run clean",
"dist": "npm run sass-compile"
},
"keywords": [
"ng-bootstrap",
"angular",
"bootstrap"
],
"author": "William Ghelfi <trumbitta@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ngTrumbitta/ng-bootstrap-to-bootstrap-3.git"
},
"bugs": {
"url": "https://github.com/ngTrumbitta/ng-bootstrap-to-bootstrap-3/issues"
},
"homepage": "https://github.com/ngTrumbitta/ng-bootstrap-to-bootstrap-3#readme",
"devDependencies": {
"bootstrap-sass": "3.3.7",
"node-sass": "4.5.0",
"shx": "0.2.2"
},
"peerDependencies": {
"@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.20"
}
}