-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "bob-angular",
"version": "0.0.0",
"description": "An AngularJS seed that includes an express server, and working examples of an integration of several client-side frameworks.",
"repository": {
"type": "git",
"url": "git://github.com/KevinEverywhere/bob-angular.git"
},
"license": "MIT",
"authors": [
"Kevin Ready",
"Kevin Ready <kevin@planetkevin.com>"
],
"engines": {
"node": "6.11.1"
},
"keywords": [
"angular",
"d3",
"youtube",
"leaflet",
"svg",
"express",
"postgres",
"three",
"three.js",
"css3",
"less",
"mixins"
],
"config": {
"unsafe-perm": true,
"//": "Included to avoid 'cannot run in wd' error"
},
"dependencies": {
"body-parser": "^1.0.2",
"bower": "^1.3.1",
"curlrequest": "0.5.1",
"express": "^4.1.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-uglify": "^0.6.0",
"method-override": "^1.0.0",
"morgan": "^1.0.0",
"pg": "4.x",
"protractor": "^1.4.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-watch": "~0.4.0",
"karma": "~0.10",
"http-server": "0.7.x",
"bower": "^1.3.1",
"shelljs": "^0.2.6",
"karma-junit-reporter": "^0.2.2",
"selenium-webdriver": "2.34.x",
"chromedriver": "2.12",
"wd": "0.3.x"
},
"scripts": {
"prestart": "npm install",
"start": "node index.js",
"preupdate": "npm install",
"pretest": "npm install",
"test": "./node_modules/karma/bin/karma start",
"prefulltest": "npm test",
"fulltest": "node exports.index.js",
"test-single-run": "./node_modules/karma/bin/karma start --single-run",
"postinstall": "bower install && npm i -S grunt grunt-cli && grunt",
"update-webdriver": "webdriver-manager update",
"update-test-webdriver": "webdriver-manager update --standalone",
"iphone-protract": "protractor test/e2e/protractor.iphone.conf.js",
"ipad-protract": "protractor test/e2e/protractor.ipad.conf.js",
"protractor": "protractor test/e2e/protractor.conf.js",
"/* */": "For launch-selenium, change the file location to match your own.",
"launch-selenium": "java -jar /Applications/adt-bundle-mac-x86_64-20140702/selenium/selenium-server-standalone-2.44.0.jar",
"open-window": "open -a /Applications/Utilities/Terminal.app/ ./",
"postopen-window": "npm run protractor"
}
}