This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
forked from ng-bootstrap/ng-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ng-bootstrap",
"version": "3.1.0",
"description": "Angular powered Bootstrap",
"author": "https://github.com/ng-bootstrap/ng-bootstrap/graphs/contributors",
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.3.0 <2.0.0"
},
"scripts": {
"preinstall": "node misc/preinstall.js",
"commitmsg": "node misc/validate-commit.js",
"build": "yarn ngb:build && yarn demo:build",
"test": "yarn check-format && yarn ngb:lint && yarn ngb:test",
"tdd": "yarn ngb:tdd",
"e2e": "yarn ngb:e2e",
"demo": "gulp demo-generate-static && yarn demo:serve",
"check-format": "gulp check-format",
"saucelabs": "ng test ng-bootstrap --karma-config src/karma.sauce.conf.js --source-map false --progress false",
"api-doc:tdd": "jasmine-node misc/api-doc.spec.js --autotest --watch misc/api-doc-test-cases/*.ts misc/api-doc.js",
"api-doc:test": "jasmine-node misc/api-doc.spec.js",
"e2e-app:serve": "ng serve e2e-app",
"ngb:static": "gulp copy-license",
"ngb:lint": "ng lint ng-bootstrap",
"ngb:test": "ng test ng-bootstrap --code-coverage --source-map false --progress false --watch false",
"ngb:tdd": "ng test ng-bootstrap --source-map false",
"ngb:e2e": "ng e2e --prod",
"ngb:e2e-noserve": "ng e2e -c noserve",
"ngb:build": "ng build ng-bootstrap --prod && yarn ngb:static",
"demo:serve": "ng serve demo --host 0.0.0.0",
"demo:static": "gulp demo-generate-static",
"demo:lint": "ng lint demo",
"demo:build": "yarn demo:lint && gulp demo-generate-static && ng build demo --prod",
"demo:deploy": "yarn demo:build && yarn demo:push",
"ci": "yarn test && yarn e2e && yarn build --progress false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-bootstrap/ng-bootstrap.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ng-bootstrap/ng-bootstrap/issues"
},
"homepage": "https://github.com/ng-bootstrap/ng-bootstrap#readme",
"dependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "~0.7.0",
"@angular-devkit/build-ng-packagr": "~0.7.0",
"@angular/cli": "~6.1.0",
"@angular/common": "6.1.0",
"@angular/compiler": "6.1.0",
"@angular/compiler-cli": "6.1.0",
"@angular/core": "6.1.0",
"@angular/forms": "6.1.0",
"@angular/platform-browser": "6.1.0",
"@angular/platform-browser-dynamic": "6.1.0",
"@angular/router": "6.1.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/prismjs": "^1.9.0",
"bootstrap": "4.0.0",
"clang-format": "1.0.35",
"core-js": "^2.5.4",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-clang-format": "1.0.23",
"gulp-conventional-changelog": "^1.1.0",
"gulp-file": "^0.3.0",
"gulp-gh-pages": "^0.5.4",
"he": "^1.1.0",
"husky": "^0.14.3",
"jasmine": "~2.8.0",
"jasmine-core": "~2.99.1",
"jasmine-node": "^1.14.5",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "~1.1.1",
"karma-sauce-launcher": "^1.2.0",
"mkdirp": "^0.5.1",
"ng-packagr": "^3.0.1",
"prismjs": "^1.12.2",
"protractor": "~5.3.1",
"rxjs": "6.0.0",
"ts-node": "~5.0.1",
"tsickle": ">=0.29.0",
"tslib": "^1.9.2",
"tslint": "^5.10.0",
"tslint-jasmine-rules": "^1.3.2",
"typescript": "~2.7.2",
"zone.js": "^0.8.26"
}
}