forked from zuffik/cucumber-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
{
"name": "cucumber-generator",
"version": "1.1.10",
"description": "Generate step definitions for cucumber scenarios",
"main": "./dist/index.js",
"repository": "https://github.com/zuffik/cucumber-generator",
"homepage": "https://github.com/zuffik/cucumber-generator",
"author": "Kristián Žuffa <kristian.zuffa@gmail.com>",
"keywords": [
"cucumber",
"gherkin",
"jest",
"testing",
"cucumber generator"
],
"license": "MIT",
"private": false,
"bin": {
"cucumber-generator": "./dist/index.js"
},
"devDependencies": {
"@types/ejs": "3.0.4",
"@types/glob": "7.1.1",
"@types/jest": "25.2.3",
"@types/ncp": "2.0.4",
"@types/rimraf": "3.0.0",
"@types/tmp": "0.2.0",
"@types/yargs": "15.0.5",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.6",
"ncp": "2.0.0",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "26.0.0",
"ts-node": "8.10.1",
"typescript": "3.9.3",
"util": "0.12.3"
},
"scripts": {
"build": "rimraf dist && tsc && node ./make-executable.js",
"build:watch": "tsc --watch",
"start": "ts-node ./src/index.ts",
"start:watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"test": "jest"
},
"dependencies": {
"array-flatten": "^3.0.0",
"chalk": "^4.0.0",
"cucumber-messages": "^8.0.0",
"ejs": "3.1.3",
"gherkin": "^9.0.0",
"glob": "^7.1.6",
"tmp": "^0.2.1",
"yargs": "^15.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"./node_modules/.bin/prettier --config ./.prettierrc --write"
],
"test/**/*.ts": [
"./node_modules/.bin/prettier --config ./.prettierrc --write"
]
}
}