UNPKG

make-license

Version:

generate a LICENSE for your open source project

70 lines (69 loc) 1.74 kB
{ "name": "make-license", "description": "generate a LICENSE for your open source project", "main": "src/index.js", "version": "0.5.1", "files": [ "src", "dist" ], "scripts": { "test": "npm run build && mocha tests/index.test.js -w ", "test:single": "npm run build && istanbul cover -x *.test.js,src/index.js _mocha tests/index.test.js", "postbuild": "cp src/index.sh dist", "build": "babel src --out-dir dist --presets es2015", "build:watch": "babel src --out-dir dist --watch", "commit": "git-cz", "report-coverage": "cat ./coverage/lcov.info | codecov", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "keywords": [ "license", "generate", "MIT", "ISC", "Unlicense", "tool", "release", "dev", "opensource", "project" ], "devDependencies": { "babel-cli": "^6.16.0", "babel-preset-es2015": "^6.16.0", "chai": "4.0.1", "codecov.io": "0.1.6", "commitizen": "2.9.6", "cz-conventional-changelog": "2.0.0", "ghooks": "2.0.0", "istanbul": "0.4.5", "mocha": "3.4.2", "proxyquire": "^1.7.10", "semantic-release": "6.3.6" }, "czConfig": { "path": "node_modules/cz-conventional-changelog" }, "config": { "ghooks": { "pre-commit": "npm run test:single" } }, "bin": { "make-license": "dist/index.sh" }, "repository": { "type": "git", "url": "https://github.com/accraze/make-license.git" }, "bugs": { "url": "https://github.com/accraze/make-license/issues" }, "homepage": "https://github.com/accraze/make-license", "author": "accraze", "license": "MIT", "dependencies": { "inquirer": "^1.0.0" } }