-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.37 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "spun",
"version": "0.11.3",
"description": "Rapid Selenium Testing",
"author": "Joseph Spencer",
"preferGlobal": true,
"scripts": {
"pretest": "jshint lib && jshint --config ./test/.jshintrc test",
"cover": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls -v && rm -rf coverage",
"test": "make test"
},
"homepage": "http://www.spunjs.com",
"bin": {
"spun": "./bin/spun.js"
},
"repository": {
"type": "git",
"url": "https://github.com/spunjs/spun.git"
},
"keywords": [
"selenium",
"spec",
"runner",
"testing",
"webdriver"
],
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/spunjs/spun/issues"
},
"devDependencies": {
"coveralls": "~2.10.0",
"should": "~4.0.4",
"istanbul": "~0.2.13",
"jshint": "~2.5.1",
"composites": "*",
"sinon": "~1.10.2",
"mocha": "^1.21.3"
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^0.4.0",
"css-selector-parser": "^1.0.3",
"dir-to-exports": "^1.0.1",
"err-handler": "^0.0.0",
"event-stream": "~3.1.5",
"findup-sync": "^0.1.3",
"glob": "^4.0.2",
"is-dir": "^1.0.0",
"is-file": "~1.0.0",
"minimist": "^0.2.0",
"once": "~1.3.0",
"spun-selenium-webdriver": "^0.2.x",
"spun-util": "^0.5.0",
"tokenize": "0.0.3",
"flatnest": "^0.2.2"
}
}