-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 964 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
38
39
40
41
{
"name": "learning-webdriverjs",
"version": "1.1.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",
"stylus": "*",
"selenium-standalone": "*",
"phantomjs": "*",
"assert": "*"
},
"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"
}
}