-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 898 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 898 Bytes
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
{
"name": "angular-github-dashboard",
"private": false,
"version": "0.1.0",
"description": "A simple angular dashboard to discover Github projects",
"repository": "https://github.com/zsoltiii/angular-github-dashboard",
"license": "MIT",
"devDependencies": {
"bower": "~1.3.12",
"http-server": "~0.7.4",
"karma": "^0.12.31",
"karma-cli": "0.0.4",
"protractor": "~1.6.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1",
"pretest": "npm install",
"test": "karma start tests/karma.conf.js",
"test-single-run": "karma start tests/karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor tests/protractor.conf.js"
}
}