-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "@brainhubeu/cucumber-steps",
"version": "1.8.7",
"description": "Quick start for testing with cucumber",
"main": "dist/main.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src/ -d dist/",
"lint": "./node_modules/.bin/eslint features/ src/",
"lint-fix": "eslint features/ src/ --fix",
"test": "./node_modules/.bin/mocha -r babel-register src/**.spec.js && ./node_modules/.bin/cucumber-js --require-module @babel/register --exit"
},
"author": {
"name": "Brainhub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brainhubeu/cucumber-steps.git"
},
"keywords": [
"testing",
"bdd",
"cucumber",
"cucumber-js",
"gherkin",
"tests",
"webdriver",
"phantomjs",
"selenium"
],
"engines": {
"node": ">= 4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/brainhubeu/cucumber-steps/issues"
},
"homepage": "https://github.com/brainhubeu/cucumber-steps#readme",
"dependencies": {
"chai-json-pattern": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/register": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-register": "^6.26.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-like": "^1.1.1",
"cucumber": "^6.0.5",
"eslint": "^7.3.1",
"eslint-config-brainhub": "^1.13.0",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-mocha": "^7.0.1",
"express": "^4.17.1",
"mocha": "^8.0.1",
"selenium-standalone": "^6.17.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"superagent": "^5.3.1",
"webdriverio": "^6.1.22"
}
}