-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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": "simple-dogs",
"version": "1.0.0",
"description": "Find your Fido - A simple web app to find a new dog",
"main": "app/app.js",
"dependencies": {
"angular-cookies": "^1.5.5",
"bower": "^1.7.9",
"ng-cookies": "^1.0.2",
"ngclipboard": "^1.1.1",
"ngstorage": "^0.3.10",
"normalize.css": "^4.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.0.1",
"karma-sinon-chai": "^1.1.0",
"lolex": "^1.5.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"scripts": {
"postinstall": "./node_modules/bower/bin/bower install && grunt",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1 ./app",
"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": "webdriver-manager start",
"protractor": "protractor tests/end-to-end/conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katie210/simple-dog-app.git"
},
"keywords": [
"pets",
"dogs",
"rescues",
"adoption",
"angular",
"SPA"
],
"author": "Kait Beaudette",
"license": "ISC",
"bugs": {
"url": "https://github.com/katie210/simple-dog-app/issues"
},
"homepage": "https://github.com/katie210/simple-dog-app#readme"
}