-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.36 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": "proxyquire-universal",
"version": "3.0.1",
"description": "Proxyquire in Node and Proxyquireify in the browser with no code changes",
"main": "index.js",
"scripts": {
"test": "standard && tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bendrucker/proxyquire-universal.git"
},
"keywords": [
"browserify-plugin",
"proxyquire",
"proxyquireify"
],
"author": "Ben Drucker <[email protected]> (http://www.bendrucker.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bendrucker/proxyquire-universal/issues"
},
"homepage": "https://github.com/bendrucker/proxyquire-universal",
"devDependencies": {
"array-includes": "^3.1.0",
"browserify": "^17.0.0",
"detective": "^5.2.0",
"escape-string-regexp": "^4.0.0",
"pff": "^1.0.0",
"proxyquire": "^2.1.0",
"proxyquireify": "^3.0.0",
"standard": "^17.0.0",
"stream-to-promise": "^3.0.0",
"tape": "^5.0.0",
"xtend": "^4.0.0"
},
"peerDependencies": {
"proxyquire": ">= 1 < 3",
"proxyquireify": ">= 1 < 4"
},
"dependencies": {
"replace-requires": "^1.1.0",
"through2": "^4.0.1",
"transformify": "^0.1.2"
},
"standard": {
"ignore": [
"test/fixtures/*.js"
]
},
"files": [
"index.js",
"transform.js"
],
"engines": {
"node": ">=12"
}
}