-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "cypress-cucumber-example",
"version": "1.0.0",
"description": "Example of cypress with cucumber and AssertThat BDD",
"main": "index.js",
"scripts": {
"pretest": "./node_modules/.bin/assertthat-bdd.cmd -i 10015 -f -a ASSERTTHAT_ACCESS_KEY -s ASSERTTHAT_SECRET_KEY -o ./cypress/integration/features",
"test": "cypress run --spec \"**/*.feature\" & echo 0",
"posttest": "./node_modules/.bin/assertthat-bdd.cmd -i 10015 -r -a ASSERTTHAT_ACCESS_KEY -s ASSERTTHAT_SECRET_KEY -j ./cypress/cucumber-json",
"test:all": "cypress run --spec \"**/*.features\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/assertthat/cypress-cucumber-example.git"
},
"keywords": [
"cypress",
"cucumber",
"testing",
"assertthat"
],
"author": "AssertThat",
"license": "MIT",
"bugs": {
"url": "https://github.com/assertthat/cypress-cucumber-example/issues"
},
"homepage": "https://github.com/assertthat/cypress-cucumber-example#readme",
"dependencies": {
"@assertthat/assertthat-bdd": "^1.2.1",
"cypress": "^3.4.1",
"cypress-cucumber-preprocessor": "^1.16.2"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": false,
"cucumberJson": {
"generate": true,
"outputFolder": "./cypress/cucumber-json",
"filePrefix": "cucumber-",
"fileSuffix": ""
}
}
}