forked from IgniteUI/igniteui-angularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (55 loc) · 2.31 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
{
"name": "igniteui-angular",
"version": "1.0.4",
"main": "src/igniteui-angular.js",
"author": "IgniteUI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IgniteUI/igniteui-angular.git"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-angular/issues"
},
"homepage": "https://github.com/IgniteUI/igniteui-angular",
"dependencies": {},
"devDependencies": {
"mkdirp": "",
"coveralls": "",
"grunt": "",
"grunt-exec": "",
"grunt-contrib-jshint": "",
"grunt-contrib-uglify": "",
"grunt-contrib-watch": "",
"jshint-stylish": "",
"protractor": "4.0.14",
"protractor-istanbul-plugin": "",
"http-server": "",
"bower": "",
"shelljs": "",
"istanbul-coveralls": "",
"karma": "0.13.22",
"karma-jasmine": "",
"karma-coverage": "",
"karma-chrome-launcher": "",
"karma-firefox-launcher": "",
"karma-junit-reporter": ""
},
"scripts": {
"postinstall": "bower install",
"instrument": "istanbul instrument ./src/ -o ./instrument/",
"cover-protractor": "rm -rf coverage/tmp && mkdirp coverage/tmp/ && cp coverage/protractor/*.json coverage/tmp/ && istanbul report --include=./coverage/tmp/*.json -dir coverage/final",
"cover-combined": "rm -rf coverage/tmp && mkdirp coverage/tmp/ && cp coverage/karma/**/coverage*.json coverage/tmp/ && cp coverage/protractor/*.json coverage/tmp/ && istanbul report --include=./coverage/tmp/*.json -dir coverage/final",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 &",
"pretest": "npm install",
"test": "karma start test/karma.conf.js",
"test-single": "karma start test/karma.conf.js --single-run --reporters junit,dots,coverage",
"test-single-firefox": "karma start test/karma.conf.js --browsers Firefox --single-run --reporters junit,dots",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/protractor-conf.js",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}