forked from JanEggers/learning-webdriverjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 867 Bytes
/
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
{
"name": "learning-webdriverjs",
"version": "0.2.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"author": "Thomas Junghans",
"license": "MIT",
"devDependencies": {
"browserify": "^5.10.1",
"express": "^4.8",
"mocha": "^1.2",
"watchify": "^1.0",
"webdriverio": "^2.1"
},
"scripts": {
"watch-test": "mocha test -w -c -R spec",
"start": "node server.js",
"test-dev": "bin/start-test.sh",
"build-css": "bin/build-css.sh",
"build-js": "bin/build-js.sh",
"watch-css": "bin/watch-css.sh",
"watch-js": "bin/watch-js.sh",
"watch": "npm run watch-css & npm run watch-js"
},
"dependencies": {
"extend": "^1.3.0",
"normalize.css": "^3.0.1"
},
"repository" :
{
"type" : "git",
"url" : "https://github.com/tjunghans/learning-webdriverjs"
}
}