-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
{
"name": "jestsmith",
"version": "1.4.0",
"description": "An AI powered package that takes in code and an optional description and generates jest testcases for that code\"",
"main": "dist/src/index.js",
"type": "commonjs",
"bin": {
"jestsmith": "dist/bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x dist/bin/index.js",
"dev": "ts-node bin/index.ts",
"start": "node dist/bin/index.js"
},
"author": "ahsansheikh94",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahsansheikh94/jestsmith.git"
},
"keywords": [
"jest",
"ai",
"testing",
"typescript",
"cli"
],
"dependencies": {
"axios": "^1.8.4",
"commander": "^13.1.0",
"fs-extra": "^11.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.3",
"@types/commander": "^2.12.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"semantic-release": "^22.0.12",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}