-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 998 Bytes
/
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
{
"name": "deumdify",
"version": "1.2.8",
"description": "Browserify plugin to expose a standalone bundle as a property of the global object",
"keywords": [
"browserify-plugin",
"browserify",
"global",
"plugin",
"umd"
],
"homepage": "https://github.com/primus/deumdify",
"bugs": "https://github.com/primus/deumdify/issues",
"license": "MIT",
"author": "Luigi Pinca",
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/primus/deumdify.git"
},
"scripts": {
"test": "c8 --reporter=lcov --reporter=text mocha"
},
"dependencies": {
"escodegen": "~2.0.0",
"esprima": "~4.0.0",
"estraverse": "~5.2.0",
"through2": "~4.0.2"
},
"devDependencies": {
"browserify": "~17.0.0",
"c8": "~7.3.5",
"concat-stream": "~2.0.0",
"jsdom": "~16.4.0",
"mocha": "~8.2.0",
"pre-commit": "~1.2.0"
},
"peerDependencies": {
"browserify": "9 - 17"
}
}