node-source-map-support/package.json
Tim Oxley 3be2f01fa5 Remove hard-coded path to test executable.
Such paths are brittle, due to npm deduping, mocha is not guaranteed to
be at this location, it may be higher in the tree.

node_modules/.bin is added to the PATH env var for npm scripts so
"mocha" on its own is both shorter and will more robustly be able to
locate the mocha executable.
2015-05-13 16:32:37 +08:00

30 lines
604 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": {
"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"
}
]
}