-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.94 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": "@djgould/cypress-ai",
"version": "0.2.0",
"description": "Asks AI to help guide you on cypress test failures",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "tsc --watch --preserveWatchOutput",
"build": "npx rimraf dist/ && tsc",
"prettier": "prettier --write \"**/*\"",
"lint": "tsc --noEmit && tsc -p ./test/tsconfig.json && tsc -p ./cypress/tsconfig.json",
"test": "npm run test:ut && npm run test:e2e && npm run test:cmp",
"test:ut": "vitest run unit.test.ts",
"test:e2e": "vitest run e2e.test.ts --test-timeout 120000",
"test:cmp": "vitest run component.test.ts --test-timeout 120000",
"verify": "npm run build && npm run lint && npm run ci:prettier && npm run test",
"ci:prettier": "prettier --check \"**/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/djgould/cypress-ai.git"
},
"keywords": [
"cypress",
"testing",
"console",
"e2e",
"component"
],
"author": "nils-hoyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/djgould/cypress-ai/issues"
},
"homepage": "https://github.com/djgould/cypress-ai#readme",
"dependencies": {
"chai": "^4.3.10",
"cyclope": "^2.7.1",
"openai": "^4.29.2",
"sinon": "^17.0.0",
"sinon-chai": "^3.7.0",
"type-detect": "^4.0.8"
},
"devDependencies": {
"@cypress/mount-utils": "^4.0.0",
"@types/chai": "4.3.14",
"@types/expect": "24.3.0",
"@types/mocha": "10.0.6",
"@types/node": "^20.11.30",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@types/type-detect": "4.0.3",
"cypress": "13.7.1",
"mocha": "10.3.0",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "3.2.4",
"rimraf": "5.0.5",
"typescript": "^5.4.3",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"directories": {
"doc": "docs",
"test": "test"
}
}