-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "angularjs-bootstrap-jasmine",
"version": "0.0.0",
"license": "MIT",
"repository": "https://github.com/ashawley/angularjs-bootstrap-jasmine",
"dependencies": {
"angular": "^1.7.9",
"angular-loader": "^1.7.9",
"angular-route": "^1.7.9",
"angular-sanitize": "^1.7.9",
"bootstrap": "3.4.1",
"jquery": "2.1.4"
},
"devDependencies": {
"angular-mocks": "^1.7.9",
"http-server": "^0.12.1",
"jasmine-core": "^2.99.1",
"jasmine-jquery": "^2.1.1",
"jshint": "^2.11.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.4",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.2.3",
"karma-junit-reporter": "^0.4.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.3",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.16",
"shelljs": "^0.7.8"
},
"scripts": {
"prestart": "npm install",
"postinstall": "npm run copy-libs",
"copy-libs": "node scripts/copy-libs.js",
"lint": "jshint ./app --exclude ./app/lib",
"pretest": "npm run lint",
"test": "karma start --single-run",
"karma": "karma start",
"start": "http-server -a localhost -p 8080 -c-1 ./app"
}
}