-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (53 loc) · 1.76 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
{
"name": "elf",
"private": true,
"version": "0.0.1",
"description": "A HTML5 Content Management System (CMS) using AngularJS and Firebase.",
"repository": "https://github.com/angular/angular-seed",
"license": "MIT",
"keywords": [
"cms",
"angularjs",
"firebase"
],
"author": {
"name": "Thiago Bonfim"
},
"bugs": {
"url": "https://github.com/bonfimtm/elf/issues"
},
"homepage": "https://github.com/bonfimtm/elf#readme",
"devDependencies": {
"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-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-junit-reporter": "^0.4.1",
"protractor": "^3.2.2",
"grunt": "~0.4.5",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "~1.0.1",
"grunt-contrib-htmlmin": "~1.5.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-processhtml": "~0.4.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a 192.168.0.9 -p 8000 -c-1 ./app -o",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js"
}
}