-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
53 lines (53 loc) · 2.24 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
{
"name": "igniteui-angularjs",
"version": "1.0.4",
"main": "src/igniteui-angularjs.js",
"author": "IgniteUI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IgniteUI/igniteui-angularjs.git"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-angularjs/issues"
},
"homepage": "https://github.com/IgniteUI/igniteui-angularjs",
"dependencies": {},
"devDependencies": {
"mkdirp": "",
"coveralls": "",
"grunt": "",
"grunt-exec": "",
"grunt-contrib-jshint": "",
"grunt-contrib-uglify": "",
"grunt-contrib-watch": "",
"jshint-stylish": "",
"protractor": "^7.0.0",
"protractor-istanbul-plugin": "",
"http-server": "",
"bower": "",
"shelljs": "",
"istanbul-coveralls": "",
"karma": "^6.3.2",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-junit-reporter": "^2.0.1"
},
"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",
"start": "http-server -a localhost -p 8000 &",
"test": "karma start test/karma.conf.js",
"test-single": "karma start test/karma.conf.js --single-run --code-coverage",
"test-single-firefox": "karma start test/karma.conf.js --browsers Firefox --single-run --reporters junit,dots",
"preprotractor": "webdriver-manager update",
"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');\"",
"hint": "grunt default",
"build": "grunt build"
}
}