forked from nodejs/import-in-the-middle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "import-in-the-middle",
"version": "1.3.0",
"description": "Intercept imports in Node.js",
"main": "index.js",
"scripts": {
"test": "c8 --check-coverage --lines 90 imhotap --runner test/runtest --files test/{hook,low-level,other}/*",
"test:ts": "c8 imhotap --runner test/runtest --files test/typescript/*.test.mts",
"coverage": "c8 --reporter html imhotap --runner test/runtest --files test/{hook,low-level,other}/* && echo '\nNow open coverage/index.html\n'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/DataDog/import-in-the-middle.git"
},
"keywords": [
"import",
"ritm",
"iitm",
"loader",
"hook",
"hooks"
],
"author": "Bryan English <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DataDog/import-in-the-middle/issues"
},
"homepage": "https://github.com/DataDog/import-in-the-middle#readme",
"devDependencies": {
"@types/node": "^18.0.6",
"c8": "^7.8.0",
"imhotap": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"module-details-from-path": "^1.0.3"
}
}