-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "detox-copilot",
"version": "0.0.27",
"description": "A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)",
"keywords": [
"detox",
"copilot",
"ai"
],
"author": "Asaf Korem <[email protected]>",
"homepage": "https://github.com/wix-incubator/detox-copilot",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/detox-copilot.git"
},
"scripts": {
"build": "tsc && tsc-alias",
"test": "jest",
"bump-version": "npm version patch && git push && git push --tags",
"release": "npm run test && npm run bump-version && npm run build && npm publish"
},
"bugs": {
"url": "https://github.com/wix-incubator/detox-copilot/issues"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.2"
}
}