-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@codeceptjs/reflection",
"version": "0.1.0",
"description": "AST-based reflection for CodeceptJS tests, suites, and steps. Safely read and edit scenario source without regex.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./errors": "./src/errors.js"
},
"types": "./src/types.d.ts",
"files": [
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run test/integration",
"test:unit": "vitest run test/unit",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"acorn": "^8.15.0",
"acorn-walk": "^8.3.0",
"diff": "^5.2.0",
"glob": "^10.5.0",
"magic-string": "^0.30.0"
},
"peerDependencies": {
"codeceptjs": ">=3.0.0",
"typescript": ">=4.0.0"
},
"peerDependenciesMeta": {
"codeceptjs": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"typescript": "^5.9.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeceptjs/reflection.git"
},
"homepage": "https://github.com/codeceptjs/reflection#readme",
"bugs": {
"url": "https://github.com/codeceptjs/reflection/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"codeceptjs",
"ast",
"reflection",
"heal",
"testing",
"scenario",
"refactor"
]
}