darksouls-names
Version:
Get random Dark Souls I, II and III characters names
76 lines (75 loc) • 2.15 kB
JSON
{
"name": "darksouls-names",
"version": "0.0.0",
"description": "Get random Dark Souls I, II and III characters names",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 60 --branches 60 --functions 60 --lines 60",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "mocha src/index.test.js --compilers js:babel-register",
"watch:test": "npm t -- -w",
"cover": "nyc npm t",
"semantic-release": "semantic-release",
"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",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/nogsantos/darksouls-names.git"
},
"keywords": [
"random",
"dark",
"souls"
],
"files": [
"dist",
"README.md"
],
"author": "Fabricio Nogueira <nogsantos@gmail.com> (http://fabricionogueira.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nogsantos/darksouls-names/issues"
},
"homepage": "https://github.com/nogsantos/darksouls-names#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"ghooks": "2.0.2",
"json-loader": "0.5.7",
"mocha": "5.0.0",
"npm-run-all": "4.1.2",
"nyc": "11.4.1",
"rimraf": "2.6.2",
"semantic-release": "^12.4.1",
"travis-deploy-once": "^4.3.3",
"webpack": "3.10.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
}
},
"babel": {
"presets": [
"env",
"stage-2"
]
}
}