expanse-names
Version:
A little learning library based off of https://github.com/kentcdodds/starwars-names
71 lines • 2.12 kB
JSON
{
"name": "expanse-names",
"version": "1.7.0",
"description": "A little learning library based off of https://github.com/kentcdodds/starwars-names",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "mocha test --compilers js:babel-register",
"test:watch": "npm t -- -w",
"cover": "nyc npm t",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/emilkloeden/expanse-names.git"
},
"keywords": [
"expanse"
],
"author": "Emil Kloeden <emilkloeden@gmail.com> (https://github.com/emilkloeden/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilkloeden/expanse-names/issues"
},
"homepage": "https://github.com/emilkloeden/expanse-names#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"ghooks": "^2.0.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.1",
"nyc": "^10.1.2",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2",
"webpack": "^1.14.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}