43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
|
{
|
||
|
"name": "es6-error",
|
||
|
"version": "4.0.2",
|
||
|
"description": "Easily-extendable error for use with ES6 classes",
|
||
|
"main": "./lib/index",
|
||
|
"jsnext:main": "./lib/index.jsnext.js",
|
||
|
"typings": "./lib/index.d.ts",
|
||
|
"scripts": {
|
||
|
"test": "mocha --compilers js:babel-core/register --recursive",
|
||
|
"build": "npm run build:commonjs && npm run build:es && npm run build:ts",
|
||
|
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src/index.js --out-file lib/index.js",
|
||
|
"build:es": "cross-env BABEL_ENV=es babel src/index.js --out-file lib/index.jsnext.js",
|
||
|
"build:ts": "cross-env BABEL_ENV=ts babel src/index.js --out-file lib/index.ts.js",
|
||
|
"prepublish": "npm run build && npm run test"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/bjyoungblood/es6-error.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"es6",
|
||
|
"error",
|
||
|
"babel"
|
||
|
],
|
||
|
"author": "Ben Youngblood",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/bjyoungblood/es6-error/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/bjyoungblood/es6-error",
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "^6.8.0",
|
||
|
"babel-core": "^6.8.0",
|
||
|
"babel-plugin-add-module-exports": "^0.1.4",
|
||
|
"babel-plugin-transform-builtin-extend": "^1.1.0",
|
||
|
"babel-preset-es2015": "^6.6.0",
|
||
|
"chai": "^3.2.0",
|
||
|
"cross-env": "^2.0.1",
|
||
|
"mocha": "^2.4.5"
|
||
|
},
|
||
|
"dependencies": {}
|
||
|
}
|