-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "zucchini",
"version": "3.1.5",
"description": "",
"bin": {
"zucchini": "bin/zucchini.js"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"main": "dist/index.js",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "babel -d dist src",
"watch": "npm run build -- --watch",
"selenium:install": "selenium-standalone install",
"selenium:start": "selenium-standalone start",
"test": "mocha --compilers js:babel-core/register src/**/_spec/*.js",
"example": "node bin/zucchini zucchini.config.js"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cullophid/zucchini"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"mocha": "^2.3.4"
},
"dependencies": {
"babel-core": "^6.7.6",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chalk": "^1.1.3",
"gherkin": "^4.0.0",
"glob": "^7.0.3",
"ramda": "^0.18.0",
"read-dir": "^0.2.0",
"requireindex": "^1.1.0",
"selenium-standalone": "^4.7.2",
"simple-promisify": "^1.0.1",
"webdriverio": "^4.0.5",
"zucchini-webdriver": "2.0.4"
}
}