spur-errors
Advanced tools
Comparing version 0.1.0 to 0.2.0-rc.1
{ | ||
"name": "spur-errors", | ||
"description": "Common error builder utility for Node.js. Contains common error types, and stack trace tracking to support more detailed error messages.", | ||
"version": "0.1.0", | ||
"main": "dist/SpurErrors.js", | ||
"version": "0.2.0-rc.1", | ||
"main": "lib/SpurErrors.js", | ||
"jsnext:main": "./src/SpurErrors", | ||
"author": { | ||
@@ -10,2 +11,6 @@ "name": "Agustin Colchado", | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org", | ||
"tag": "next" | ||
}, | ||
"keywords": [ | ||
@@ -19,9 +24,13 @@ "spur", | ||
"scripts": { | ||
"build": "babel src -d dist", | ||
"dev": "babel --watch src -d dist", | ||
"build": "babel src -d lib --source-maps", | ||
"dev": "babel --watch src -d lib", | ||
"lint": "eslint .", | ||
"pretest": "npm run lint", | ||
"test": "babel-node --debug node_modules/mocha/bin/_mocha ./test/", | ||
"precoveralls": "npm run lint", | ||
"coveralls": "babel-node node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha --report lcovonly ./test/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", | ||
"test-unit": "babel-node --debug node_modules/mocha/bin/_mocha ./test/unit/", | ||
"test-unit-legacy": "babel-node --debug node_modules/mocha/bin/_mocha ./test/legacy/", | ||
"test-integration": "babel-node --debug node_modules/mocha/bin/_mocha ./test/integration/", | ||
"test": "npm run test-unit && npm run test-unit-legacy && npm run test-integration", | ||
"coverage": "babel-node node_modules/isparta/bin/isparta cover --report text --report html ./node_modules/mocha/bin/_mocha --report lcovonly -- ./test/unit/", | ||
"precoveralls": "npm run build && npm run lint && npm run test-unit-legacy && npm run test-integration", | ||
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", | ||
"build-and-test": "npm run build && npm test" | ||
@@ -40,8 +49,10 @@ }, | ||
"babel-cli": "^6.5.1", | ||
"babel-plugin-add-module-exports": "^0.2.1", | ||
"babel-preset-es2015": "^6.5.0", | ||
"babel-preset-es2015-loose": "^7.0.0", | ||
"chai": "^3.5.0", | ||
"coffee-script": "^1.10.0", | ||
"coveralls": "^2.11.6", | ||
"eslint": "^2.4.0", | ||
"eslint-config-spur": "~0.0.2", | ||
"eslint-config-opentable": "^4.0.0", | ||
"eslint-plugin-import": "^1.8.1", | ||
@@ -48,0 +59,0 @@ "isparta": "^4.0.0", |
17072
9
14
69