forked from cucumber-examples/shouty.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 986 Bytes
/
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
{
"name": "Shouty",
"version": "1.0.0",
"description": "Shouty exercise in JavaScript",
"main": "index.js",
"watch": {
"mocha": "{lib,test}/**/*.js",
"cucumber": {
"patterns": [
"lib",
"features"
],
"extensions": "js,feature"
}
},
"scripts": {
"mocha": "mocha",
"cucumber": "cucumber-js -f @cucumber/pretty-formatter",
"test": "npm-run-all --silent -c mocha cucumber",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "[email protected]:cucumber-ltd/shouty.js.git"
},
"keywords": [
"shouty",
"bdd",
"cucumber"
],
"author": "Cucumber Ltd",
"bugs": {
"url": "https://github.com/cucumber-ltd/shouty.js/issues"
},
"homepage": "https://github.com/cucumber-ltd/shouty.js",
"devDependencies": {
"@cucumber/cucumber": "7.3.1",
"@cucumber/pretty-formatter": "1.0.0-alpha.1",
"mocha": "9.1.3",
"npm-run-all": "4.1.5",
"npm-watch": "0.11.0"
}
}