-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
101 lines (101 loc) · 2.83 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "nightwatch-cucumber",
"version": "9.1.3",
"description": "Nightwatch.js plugin for Cucumber.js",
"main": "lib/index.js",
"engines": {
"node": ">= 6.0.0"
},
"author": "Igor Muchychka <mucsi_96@yahoo.com>",
"license": "MIT",
"dependencies": {
"co": "^4.6.0",
"combine-errors": "^3.0.3",
"glob": "^7.1.2",
"lodash.clonedeep": "^4.5.0",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"tmp": "^0.0.33"
},
"scripts": {
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate",
"code-style": "eslint lib resources test",
"e2e-test": "mocha --no-timeouts",
"test": "npm run code-style && npm run e2e-test && istanbul report",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "npm run code-style",
"create-examples": "node examples/create-examples.js",
"create-site": "node site/create-site.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mucsi96/nightwatch-cucumber.git"
},
"keywords": [
"nightwatch",
"cucumber",
"gherkin",
"bdd",
"selenium",
"browser",
"automation",
"testing",
"test"
],
"bugs": {
"url": "https://github.com/mucsi96/nightwatch-cucumber/issues"
},
"homepage": "https://github.com/mucsi96/nightwatch-cucumber#readme",
"files": [
"lib",
"resources"
],
"peerDependencies": {
"cucumber": "4.0.0 - 4.2.1",
"nightwatch": "0.9.0 - 0.9.21"
},
"devDependencies": {
"@jxnblk/simple-icons": "^1.0.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"chai": "^4.1.2",
"chromedriver": "^2.38.2",
"coveralls": "^3.0.0",
"cucumber": "4.2.1",
"cucumber-html-reporter": "4.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-no-only-tests": "^2.0.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"grunt": "^1.0.2",
"gulp": "^3.9.1",
"gulp-nightwatch": "^0.3.2",
"istanbul": "^0.4.5",
"jsdom": "11.9.0",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^4.0.0",
"markdown-it-table-of-contents": "^0.3.3",
"mocha": "^5.1.1",
"nightwatch": "0.9.21",
"phantomjs-prebuilt": "^2.1.16",
"prismjs": "^1.14.0",
"prismjs-components-loader": "^2.0.0",
"rimraf": "^2.6.2",
"selenium-server": "3.7.1",
"semantic-release": "7.0.2",
"twemoji": "^2.5.1",
"simple-icons": "^1.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}