-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.78 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
{
"name": "checki",
"version": "0.0.2",
"description": "Checki is an AI-driven CLI tool that generates Jest unit tests for React components, improving testing efficiency.",
"main": "lib/index.js",
"bin": "bin/cli",
"types": "lib/index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -c && npm link",
"build": "cross-env NODE_ENV=production rollup -c && npm link",
"format": "prettier --write '**/*.{js,ts}'",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "https://github.com/puntorigen4u/checki.git"
},
"keywords": [
"ai",
"cli",
"jest",
"unit-testing",
"react",
"test-generation",
"test-automation",
"react-testing",
"javascript",
"developer-tools"
],
"author": "Pablo Schaffner",
"license": "MIT",
"bugs": {
"mail": "",
"url": "https://github.com/puntorigen4u/checki/issues"
},
"homepage": "https://github.com/puntorigen4u/checki#readme",
"dependencies": {
"@concepto/console": "*",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"extractjs": "^0.3.1",
"find-root": "^1.1.0",
"minimist": "^1.2.8",
"patch-package": "^7.0.0",
"print-code": "^1.0.2",
"prompts": "^2.4.2",
"simple-encryptor": "^4.0.0",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/node": "^16.11.11",
"cross-env": "^7.0.3",
"prettier": "^2.5.1",
"rollup": "^2.23.1",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"scarfSettings": {
"enabled": false
},
"engines": {
"node": ">=16.0.0"
}
}