-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (26 loc) · 917 Bytes
/
package.json
File metadata and controls
29 lines (26 loc) · 917 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
28
29
{
"version": "0.0.0",
"private": true,
"preferGlobal": false,
"name": "Taskbar",
"description": "A example taskbar",
"devDependencies": {
"bower": "^1.3.1",
"grunt": "~0.4.5",
"grunt-bower-task": "0.3.4",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-protractor-runner": "~1.0.0",
"grunt-protractor-webdriver": "~0.1.8"
},
"scripts": {
"install": "npm run update-standalone-webdriver && npm run update-webdriver",
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -p 8000",
"update-standalone-webdriver": "./node_modules/protractor/bin/webdriver-manager update --standalone",
"update-webdriver": "./node_modules/grunt-protractor-runner/node_modules/protractor/bin/webdriver-manager update",
"pre-e2e": "npm run update-webdriver",
"e2e": "protractor tests/protractor-conf.js"
}
}