forked from FDIM/jasmine-unit-test-generator
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "jest-test-gen",
"version": "1.4.3",
"description": "Generator of jest unit test with all imports mocked and tests stub for every class and function exported",
"keywords": [
"jest",
"unit test generator",
"test generator",
"mocks",
"testing",
"jest 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",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:egm0121/jest-test-gen.git"
},
"author": "egm0121",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.141",
"@types/minimist": "^1.2.2",
"@types/node": "^11.11.6",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.3.0"
},
"bin": {
"jest-test-gen": "./lib/cli.js"
},
"dependencies": {
"compare-versions": "^4.1.3",
"debug": "4.3.2",
"latest-version": "^5.1.0",
"lodash": "^4.1.*",
"minimist": "^1.2.6",
"typescript": "^4.4.2"
}
}