harry-potter-names
Version:
Get random Harry Potter names
74 lines • 2.14 kB
JSON
{
"name": "harry-potter-names",
"version": "1.2.0",
"description": "Get random Harry Potter names",
"main": "dist/index.js",
"scripts": {
"precommit": "npm run cover && npm run check-coverage",
"cz": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"watch:test": "npm t -- -w",
"test": "mocha src/index.test.js --compilers js:babel-register",
"cover": "nyc npm t",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --function 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/gmanriqueUy/harry-potter-names.git"
},
"keywords": [
"random",
"harry",
"potter"
],
"files": [
"dist",
"README.md"
],
"author": "Gonzalo Manrique <gonzalo@newtrino.uy> (https://newtrino.uy/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gmanriqueUy/harry-potter-names/issues"
},
"homepage": "https://github.com/gmanriqueUy/harry-potter-names#readme",
"dependencies": {
"unique-random-array": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-loader": "7.1.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.24.1",
"chai": "4.0.2",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"json-loader": "0.5.4",
"mocha": "3.4.2",
"npm-run-all": "4.0.2",
"nyc": "11.0.3",
"rimraf": "2.6.1",
"semantic-release": "^6.3.6",
"webpack": "3.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}