-
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.09 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.09 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": "impacted",
"version": "0.0.8",
"description": "Find test files impacted by code changes using static dependency analysis",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"bin": {
"impacted": "./bin/impacted.js"
},
"files": [
"src",
"bin"
],
"scripts": {
"test": "node --test",
"test:examples": "node --test examples/test.js"
},
"keywords": [
"test",
"testing",
"affected",
"impacted",
"dependency",
"graph",
"ci",
"predictive",
"test-selection"
],
"author": "sozua",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sozua/impacted.git"
},
"homepage": "https://github.com/sozua/impacted#readme",
"bugs": {
"url": "https://github.com/sozua/impacted/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"fast-glob": "^3.3.3",
"is-glob": "^4.0.3"
}
}