forked from evanw/node-source-map-support
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1003 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1003 Bytes
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
{
"name": "source-map-support",
"description": "Fixes stack traces for files with source maps",
"version": "0.4.8",
"main": "./source-map-support.js",
"scripts": {
"build": "node build.js",
"build:async": "browserify -t babelify -s swSourceMap source-map-support.sw.js -o sw-source-map-support.js",
"serve-tests": "http-server -p 1336",
"prepublish": "npm run build",
"test": "mocha"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"source-map": "^0.5.3"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "13.1.1",
"coffee-script": "1.7.1",
"http-server": "^0.8.5",
"mocha": "1.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/evanw/node-source-map-support"
},
"bugs": {
"url": "https://github.com/evanw/node-source-map-support/issues"
},
"license": "MIT"
}