-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (28 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (28 loc) · 1.31 KB
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
{
"name": "cucumber-example",
"version": "1.0.0",
"description": "An example of using cucumber.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cucumber": "cucumber-js & exit 0",
"add-item": "cucumber-js features/add-item.feature & exit 0",
"add-list": "cucumber-js features/add-list.feature & exit 0",
"buy": "cucumber-js features/buy.feature & exit 0",
"get-bought-items": "cucumber-js features/get-bought-items.feature & exit 0",
"get-unbought-items": "cucumber-js features/get-unbought-items.feature & exit 0",
"remove-item": "cucumber-js features/remove-item.feature & exit 0",
"sort-alphabetical": "cucumber-js features/sort-alphabetical.feature & exit 0",
"sort-by-category": "cucumber-js features/sort-by-category.feature & exit 0",
"pelle": "cucumber-js features/add-item.feature & exit 0",
"ola": "cucumber-js features/sort-alphabetical.feature & exit 0",
"david": "cucumber-js features/get-bought-items.feature & exit 0",
"anton": "cucumber-js features/get-unbought-items.feature & exit 0"
},
"author": "Pelle, Anton, Ola",
"license": "MIT",
"dependencies": {
"cucumber": "^2.0.0-rc.9",
"express": "^4.15.4"
}
}