-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"name": "specifier-resolution-node",
"version": "1.1.4",
"main": "index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./register": "./src/register.js"
},
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/Poyoman39/specifier-resolution-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Poyoman39/specifier-resolution-node.git"
},
"scripts": {
"check:update": "npm-check -u",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Johan Maupetit (johan.maupetit@shapy.co)",
"license": "LGPL 2.1",
"description": "Node.js loader for import specifiers as file paths without extensions or as directory paths",
"keywords": [
"--experimental-specifier-resolution",
"specifier-resolution",
"node",
"nodejs",
"module",
"loader",
"resolver",
"resolution",
"esm",
"es6",
"esnext",
"ecmascript",
"extension",
"filename",
"directory",
"path"
],
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"npm-check": "^6.0.1"
},
"dependencies": {
"import-meta-resolve": "^4.1.0"
}
}