forked from amiceli/vitest-cucumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "@amiceli/vitest-cucumber",
"version": "2.0.1",
"description": "vitest tools to use Gherkin feature in unit tests",
"main": "dist/module.js",
"scripts": {
"lint": "eslint -c .eslintrc.js src/",
"test:coverage": "vitest run --coverage",
"lint:staged": "eslint -c .eslintrc.js",
"lint:fix": "eslint -c .eslintrc.js src/ --fix",
"build": "npx tsc --declaration",
"test:unit": "vitest --run",
"prepare": "husky install"
},
"keywords": [
"vitest",
"cucumber",
"Gherkin"
],
"author": "amiceli",
"license": "ISC",
"devDependencies": {
"@amiceli/eslint-config-typescript": "^1.0.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.4",
"@types/node": "^20.4.5",
"@vitest/coverage-v8": "^1.0.3",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"vitest": "^1.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amiceli/vitest-cucumber.git"
},
"lint-staged": {
"*.ts": "npm run lint:staged"
},
"bugs": {
"url": "https://github.com/amiceli/vitest-cucumber/issues"
},
"homepage": "https://github.com/amiceli/vitest-cucumber#readme"
}