forked from fgnass/retrace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 888 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
{
"name": "retrace",
"version": "1.0.0",
"description": "Use source maps on the server to generate readable browser stack traces",
"repository": "fgnass/retrace",
"main": "index.js",
"scripts": {
"test": "node test",
"fixture": "cd test/fixture && browserify main -d | tee bundle.inline.js | exorcist bundle.js.map > bundle.js && uglifyjs bundle.js --in-source-map=bundle.js.map --source-map=bundle.min.js.map -o bundle.min.js"
},
"author": "Felix Gnass <[email protected]>",
"license": "MIT",
"dependencies": {
"data-uri-to-buffer": "0.0.4",
"got": "^5.1.0",
"promise": "^7.0.4",
"source-map": "^0.5.3",
"stacktrace-parser": "^0.1.3"
},
"devDependencies": {
"browserify": "^12.0.1",
"eslint": "^1.9.0",
"exorcist": "^0.4.0",
"express": "^4.13.3",
"tap": "^2.2.0",
"uglify-js": "^2.5.0",
"wd": "^0.4.0"
}
}