-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
69
70
71
72
73
74
{
"name": "fermenter",
"description": "A Gherkin Based test runner",
"version": "1.8.1",
"main": "./build/index",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rimraf build/* && tsc",
"release": "cd build && npm publish",
"changelog:verify": "changelog-verify CHANGELOG.md",
"changelog:version": "version-changelog CHANGELOG.md && git add CHANGELOG.md",
"preversion": "yarn lint && yarn build && yarn test:coverage && yarn changelog:verify",
"version": "yarn changelog:version",
"postversion": "yarn build",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/nfour/fermenter"
},
"keywords": [
"gherkin",
"cucumber",
"bdd",
"functional",
"procedural",
"test",
"jest",
"framework"
],
"author": "nfour",
"license": "ISC",
"contributors": [
"nfour <https://github.com/nfour>",
"viresse19 <https://github.com/viresse19>"
],
"dependencies": {
"@types/bluebird": "~3.5.29",
"@types/lodash": "~4.14.149",
"bluebird": "~3.7.2",
"changelog-verify": "~1.1.2",
"colors": "~1.4.0",
"cucumber-expressions": "~8.3.0",
"error-stack-parser": "~2.0.6",
"gherkin": "~5.1.0",
"is-valid-path": "~0.1.1",
"jest": "~25.1.0",
"lodash": "~4.17.15",
"trans-interpolator": "~1.1.2",
"upath": "~1.2.0",
"version-changelog": "~3.1.1"
},
"devDependencies": {
"@types/execa": "~2.0.0",
"@types/fs-extra": "~8.1.0",
"@types/jest": "~25.1.3",
"@types/node": "~13.7.6",
"@types/uuid": "~7.0.0",
"cpy-cli": "~3.1.0",
"execa": "~4.0.0",
"fs-extra": "~8.1.0",
"rimraf": "~3.0.2",
"ts-jest": "~25.2.1",
"ts-node": "8.6.2",
"tslint": "~6.0.0",
"tslint-config-temando": "~1.6.2",
"typescript": "3.8.2",
"uuid": "~7.0.1"
},
"engines": {
"node": ">= 6.10"
}
}