-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
54 lines (54 loc) · 1.08 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
{
"name": "exorcist",
"version": "2.0.0",
"description": "Externalizes the source map found inside a stream to an external `.js.map` file",
"bin": {
"exorcist": "bin/exorcist.js"
},
"main": "index.js",
"scripts": {
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/exorcist.git"
},
"homepage": "https://github.com/thlorenz/exorcist",
"dependencies": {
"is-stream": "^2.0.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"mold-source-map": "^0.4.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"nave": "^3.2.2",
"proxyquire": "^2.1.3",
"tap": "^15.1.6",
"through2": "~4.0.2"
},
"keywords": [
"source-map",
"source",
"map",
"external",
"mapfile",
"browserify",
"browserify-tool"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=14"
},
"tap": {
"branches": 95,
"lines": 95,
"functions": 100,
"statements": 95
}
}