-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "ast-module-types",
"version": "7.0.0",
"description": "A collection of useful helper functions when trying to determine module type (CommonJS or AMD) properties of an AST node.",
"type": "module",
"exports": {
".": "./index.js"
},
"files": [
"index.js"
],
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"uvu": "uvu test -i utils",
"test": "npm run lint && npm run uvu",
"test:ci": "c8 npm run uvu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-ast-module-types.git"
},
"keywords": [
"esprima",
"module",
"type",
"define",
"require",
"factory"
],
"author": "Joel Kemp <joel@mrjoelkemp.com> (https://mrjoelkemp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-ast-module-types/issues"
},
"homepage": "https://github.com/dependents/node-ast-module-types",
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"devDependencies": {
"c8": "^11.0.0",
"node-source-walk": "^8.0.0",
"uvu": "^0.5.6",
"xo": "^2.0.2"
}
}