-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "cucumber-fp",
"version": "0.0.6",
"description": "Cucumber.js with functional programming-style step definitions",
"keywords": [
"testing",
"bdd",
"cucumber",
"gherkin",
"tests",
"functional",
"functional programming",
"steps",
"step definitions"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Julien Biezemans <[email protected]>",
"homepage": "https://github.com/jbpros/cucumber-fp",
"repository": {
"type": "git",
"url": "git://github.com/jbpros/cucumber-fp.git"
},
"bugs": {
"url": "https://github.com/jbpros/cucumber-fp/issues"
},
"directories": {
"lib": "lib"
},
"files": [
"lib/"
],
"engines": {
"node": ">=8"
},
"license": "MIT",
"devDependencies": {
"@cucumber/cucumber": "^7.0.0",
"@cucumber/messages": "^13.2.1",
"@types/mkdirp": "^1.0.1",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"hamjest": "^3.7.1",
"mkdirp": "^1.0.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1"
},
"peerDependencies": {
"@cucumber/cucumber": "^7.0.0"
},
"dependencies": {
"ts-essentials": "^7.0.1",
"typescript": "^4.1.3",
"util-arity": "^1.1.0"
},
"scripts": {
"build": "tsc -p tsconfig.node.json",
"build:watch": "tsc -p tsconfig.node.json --watch",
"lint": "eslint \"src/**/*.ts\" \"features/**/*.ts\"",
"pretest": "npm run build",
"test": "cucumber-js"
}
}