feathers/packages/cli/package.json
David Luecke cfbf357365 3.8.0
2018-08-23 19:12:48 -07:00

68 lines
1.9 KiB
JSON

{
"name": "@feathersjs/cli",
"description": "Command-line Feathers generator",
"version": "3.8.0",
"homepage": "https://github.com/feathersjs/cli",
"main": "lib/",
"bin": {
"feathers": "./bin/feathers.js"
},
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/cli.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"bugs": {
"url": "https://github.com/feathersjs/cli/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:pre": "npm version prerelease && npm publish --tag pre --access public",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"mocha": "mocha --opts mocha.opts",
"test": "npm run lint && npm run coverage",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"lint": "semistandard --fix"
},
"directories": {
"lib": "lib"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"preferGlobal": true,
"dependencies": {
"@feathersjs/tools": "^0.1.6",
"commander": "^2.9.0",
"generator-feathers": "2.6.0",
"generator-feathers-plugin": "1.0.0",
"semver": "^5.3.0",
"update-notifier": "^2.3.0",
"yeoman-environment": "^2.0.0"
},
"devDependencies": {
"istanbul": "^1.1.0-alpha.1",
"lodash": "^4.6.1",
"mocha": "^5.0.0",
"semistandard": "^12.0.0"
}
}