-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 748 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 748 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
{
"name": "batteries",
"private": true,
"version": "0.1.0",
"description": "Save your battery",
"repository": "https://github.com/Miicky/battery",
"license": "MIT",
"devDependencies": {
"http-server": "^0.9.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3"
},
"scripts": {
"prestart": "npm install",
"start": "http-server ./app -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",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js"
}
}