-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
66 lines (66 loc) · 1.68 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
62
63
64
65
66
{
"name": "pioneer",
"description": "Delicious Cucumber tests",
"keywords": [
"cucumber",
"selenium-webdriver",
"testing"
],
"author": "MojoTech",
"version": "0.11.7",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"main": "./lib/pioneer",
"bin": {
"pioneer": "bin/pioneer"
},
"scripts": {
"build": "npm run-script clean && gulp",
"clean": "rm -rf lib",
"pub": "npm run-script build && npm publish && npm run-script clean",
"test": "istanbul cover --dir coverage/unit -x **/lib/**/*format.js node_modules/mocha/bin/_mocha -- test/unit/**.coffee",
"integration": "istanbul cover -x **/lib/**/*format.js ./bin/pioneer --dir coverage/integration",
"coverage": "./coverage.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/mojotech/pioneer.git"
},
"devDependencies": {
"coffeescript": "^1.12.7",
"coveralls": "^3.0.3",
"exec": "0.1.1",
"gulp": "~4.0.0",
"gulp-coffee": "^2.3.5",
"gulp-include": "^2.3.1",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"should": "3.3.1",
"sinon": "1.10.0",
"sinon-chai": "2.5.0"
},
"dependencies": {
"bluebird": "1.2.4",
"chai": "1.9.2",
"chai-as-promised": "4.1.0",
"colors": "0.6.2",
"cucumber": "joshtombs/cucumber-js#0.3.3ErrorFormatting",
"lodash": "^4.17.11",
"minimist": "0.2.0",
"moment": "2.24.0",
"prompt": "^1.0.0",
"rimraf": "2.2.8",
"selenium-webdriver": "^2.53.3",
"update-notifier": "2.5.0"
},
"bugs": {
"url": "https://github.com/mojotech/pioneer/issues"
},
"homepage": "https://github.com/mojotech/pioneer"
}