-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "angularjs-e2e-showcase",
"version": "0.0.1",
"dependencies": {
"grunt": "0.4.5",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-jshint": "0.11.0",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-uglify": "0.8.0",
"grunt-contrib-watch": "0.6.1",
"grunt-contrib-cssmin": "0.13.0",
"grunt-filerev": "2.3.1",
"load-grunt-tasks": "3.2.0",
"grunt-usemin": "3.0.0",
"grunt-contrib-copy": "0.8.0",
"grunt-contrib-imagemin": "0.9.4",
"karma-coverage": "0.4.2",
"grunt-lesslint": "1.4.1",
"grunt-contrib-less": "~1.0.1",
"grunt-contrib-htmlmin": "0.6.0",
"karma-jasmine": "0.3.6",
"busboy": "^0.2.9",
"grunt-css-sprite": "^0.2.2",
"fs-extra": "^0.16.4",
"bower": "^1.7.7",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-junit-reporter": "^0.4.1"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run --no-auto-watch --browsers=Chrome",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-test/protractor.conf.js --browsers=Chrome"
}
}