-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 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
60
61
{
"name": "kommando",
"description": "Configurable cross browser functional / acceptance test launcher (using Webdriver)",
"keywords": [
"webdriver",
"selenium",
"testing",
"automation",
"functional",
"acceptance"
],
"version": "1.0.0",
"homepage": "https://github.com/uxebu/kommando",
"repository": {
"type": "git",
"url": "git://github.com/uxebu/kommando.git"
},
"main": "src/index.js",
"bin": {
"kommando": "./bin/kommando"
},
"scripts": {
"test": "node ./test/functional/run-all.js && npm run lint",
"lint": "jshint src test && jscs src test"
},
"author": {
"name": "Tobias von Klipstein",
"email": "tk@uxebu.com"
},
"license": "MIT",
"dependencies": {
"address": "~0.0.3",
"async": "~0.8.0",
"cabbie": "0.0.9",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"cucumber": "^0.4.0",
"freeport": "~1.0.2",
"glob": "~3.2.6",
"jasmine-node": "~1.14.5",
"lodash": "~2.4.1",
"mocha": "~1.18.2",
"nesh": "^1.5.0",
"optimist": "~0.6.0",
"saucelabs": "~0.1.0",
"selenium-webdriver": "~2.43.1",
"wd": "~0.2.19",
"webdrvr": "~2.43.0-0",
"leadfoot": "^1.0.1",
"digdug": "^1.0.0",
"jasminewd": "^1.1.0",
"jasmine": "^2.0.1"
},
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"jscs": "~1.5.8",
"jshint": "^2.5.0"
}
}