-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 898 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
{
"name": "sourcemapping",
"version": "1.0.8",
"description": "mapping to source code",
"homepage": "https://github.com/7ippo/sourcemapping",
"repository": "https://github.com/7ippo/sourcemapping.git",
"main": "index.js",
"scripts": {
"test": "tsc && node --inspect-brk=9229 bin/sourcemapping.js -s \"ReferenceError: exclued is not defined\\n at getParameterByName (http://localhost:7777/aabbcc/logline.min.js:1:9827)\\n at http://localhost:7777/aabbcc/index.js:15:11\" -m \"./test\""
},
"bin": {
"sourcemapping": "bin/sourcemapping.js"
},
"author": "zpo <[email protected]>",
"license": "ISC",
"keywords": [
"sourcemap",
"stack",
"stack-trace",
"window.onerror"
],
"dependencies": {
"commander": "^2.20.0",
"error-stack-parser": "^2.0.2",
"source-map": "^0.7.3"
},
"devDependencies": {
"@types/node": "^12.0.12"
}
}