-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "import-from-esm",
"version": "2.0.0",
"main": "index.js",
"type": "module",
"description": "Import a module like with require() but from a given path (for ESM)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sheerlox/import-from-esm.git"
},
"author": "Pierre Cavin <me@sherlox.io> (https://github.com/sheerlox)",
"contributors": [
"Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
],
"engines": {
"node": ">=18.20"
},
"scripts": {
"test": "npm run test:all && npm run knip",
"test:all": "npm run test:ava && npm run test:nested && npm run test:fuzz:regression && npm run test:fuzz && npm run test:tsd",
"test:ava": "c8 ava tests/e2e.test.js",
"test:ava:watch": "c8 ava tests/e2e.test.js --watch",
"test:nested": "cd tests/fixture/nested/ && npm ci && npm test",
"test:fuzz": "ava tests/fuzz.test.js",
"test:fuzz:regression": "ava tests/fuzz-regression.test.js",
"test:tsd": "tsd --files tests/**/*.test-d.ts",
"knip": "knip",
"lint": "xo",
"lint:fix": "xo --fix"
},
"files": [
"index.js",
"index.d.ts",
"lib/**/*.js"
],
"keywords": [
"import",
"module",
"resolve",
"path",
"esm"
],
"dependencies": {
"debug": "^4.3.4",
"import-meta-resolve": "^4.0.0"
},
"devDependencies": {
"@fast-check/ava": "1.2.1",
"@insurgent/export-map-test": "1.0.1",
"@insurgent/json-index-test": "2.0.0",
"@insurgent/json-main-test": "2.0.0",
"@insurgent/subpaths-test": "1.0.0",
"@insurgent/conventional-changelog-preset": "10.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/debug": "4.1.12",
"ava": "5.3.1",
"c8": "9.1.0",
"knip": "4.6.0",
"semantic-release": "24.2.0",
"tsd": "0.31.2",
"xo": "0.56.0"
},
"xo": {
"rules": {
"unicorn/no-await-expression-member": "off",
"import/order": "off",
"object-curly-spacing": [
"error",
"always"
]
},
"ignores": [
"lib/"
]
},
"c8": {
"include": [
"index.js"
],
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}