node-source-map-support/package.json
Julien Fontanet 6ba672e8b7 Add build npm script
Abstract the build process behind `npm run build`.

It is a good practice as it makes the transition to another build system easier.
2015-05-15 11:32:24 +02:00

31 lines
634 B
JSON

{
"name": "source-map-support",
"description": "Fixes stack traces for files with source maps",
"version": "0.2.10",
"main": "./source-map-support.js",
"scripts": {
"build": "node build.js",
"test": "mocha"
},
"dependencies": {
"source-map": "0.1.32"
},
"devDependencies": {
"coffee-script": "1.7.1",
"browserify": "3.44.2",
"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"
},
"licenses": [
{
"type": "MIT"
}
]
}