-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "require-in-the-middle",
"version": "7.4.0",
"description": "Module to hook into the Node.js require function",
"main": "index.js",
"types": "types/index.d.ts",
"dependencies": {
"debug": "^4.3.5",
"module-details-from-path": "^1.0.3",
"resolve": "^1.22.8"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"ipp-printer": "^1.0.0",
"patterns": "^1.0.3",
"roundround": "^0.2.0",
"semver": "^6.3.0",
"standard": "^14.3.1",
"tape": "^4.11.0"
},
"scripts": {
"test": "npm run test:lint && npm run test:tape && npm run test:babel",
"test:lint": "standard",
"test:tape": "tape test/*.js",
"test:babel": "node test/babel/babel-register.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/require-in-the-middle.git"
},
"keywords": [
"require",
"hook",
"shim",
"shimmer",
"shimming",
"patch",
"monkey",
"monkeypatch",
"module",
"load"
],
"files": [
"types"
],
"author": "Thomas Watson Steen <[email protected]> (https://twitter.com/wa7son)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elastic/require-in-the-middle/issues"
},
"homepage": "https://github.com/elastic/require-in-the-middle#readme",
"engines": {
"node": ">=8.6.0"
}
}