forked from egm0121/jest-test-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nrfcloud/vitest-autogen",
"version": "1.4.3",
"description": "Generator of vite/vitest unit tests with all imports mocked and tests stub for every class and function exported",
"keywords": [
"vite",
"vitest",
"unit test generator",
"test generator",
"mocks",
"testing",
"vitest generator",
"es6 classes",
"functions",
"export parsing",
"typescript",
"tsx"
],
"main": "lib/public-api.js",
"scripts": {
"build:dev": "tsc --watch",
"build": "tsc",
"dev": "ts-node ./src/cli.ts",
"prepublishOnly": "npm run build",
"clean": "rm -rf coverage reports node_modules/.cache/turbo && pnpm clean:turbo && pnpm turbo clean:single",
"clean:turbo": "rm -rf node_modules/.cache/turbo",
"lint": "dprint check && eslint packages/* --no-error-on-unmatched-pattern --cache && syncpack-list-mismatches",
"lint:fix": "dprint fmt && eslint packages/* --no-error-on-unmatched-pattern --fix && syncpack-fix-mismatches && syncpack-format",
"prepare": "ts-patch install && husky install",
"release": "pnpm lint && pnpm build:clean && changeset publish",
"test": "USE_COMPILED_TESTS=true compile && USE_COMPILED_TESTS=true vitest --run --reporter=basic --reporter=junit --outputFile.junit=coverage/junit.xml"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:nrfcloud/vitest-autogen.git"
},
"author": "egm0121",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@nrfcloud/templates": "^1.4.0",
"@nrfcloud/utils.public.eslint": "1.1.0",
"@rollup/plugin-typescript": "~11.1.2",
"@types/debug": "^4.1.12",
"@types/eslint": "^8.40.0",
"@types/lodash": "^4.14.202",
"@types/minimist": "^1.2.5",
"@types/node": "^18.16.16",
"@vitest/ui": "^0.33.0",
"compare-versions": "^4.1.4",
"debug": "4.3.2",
"latest-version": "^5.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.0.4",
"deepmerge": "^4.3.1",
"dprint": "^0.34.5",
"esbuild": "^0.18.17",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.0",
"plop": "^3.1.2",
"syncpack": "^9.8.6",
"ts-patch": ">=3.0.2",
"turbo": "^1.10.10"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=6.32.4"
},
"bin": {
"vitest-autogen": "./lib/cli.js"
},
"dependencies": {
"@vitest/coverage-v8": "^1.0.4",
"@changesets/cli": "^2.27.1",
"compare-versions": "^4.1.4",
"debug": "4.3.2",
"latest-version": "^5.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}