feathers/packages/cli/package.json

88 lines
2.3 KiB
JSON

{
"name": "@feathersjs/cli",
"description": "The command line interface for creating Feathers applications",
"version": "5.0.0-pre.26",
"homepage": "https://feathersjs.com",
"main": "lib/",
"bin": {
"feathers": "./bin/feathers"
},
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
},
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 14"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"bin/**",
"*.d.ts",
"*.js"
],
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc && shx cp -r src/. lib/",
"mocha": "mocha --timeout 60000 --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts",
"test": "npm run compile && npm run mocha"
},
"directories": {
"lib": "lib/cli"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathershq/pinion": "^0.3.3",
"chalk": "^4.0.1",
"lodash": "^4.17.21",
"prettier": "^2.7.1"
},
"devDependencies": {
"@feathersjs/authentication": "^5.0.0-pre.26",
"@feathersjs/authentication-local": "^5.0.0-pre.26",
"@feathersjs/authentication-oauth": "^5.0.0-pre.26",
"@feathersjs/configuration": "^5.0.0-pre.26",
"@feathersjs/errors": "^5.0.0-pre.26",
"@feathersjs/express": "^5.0.0-pre.26",
"@feathersjs/feathers": "^5.0.0-pre.26",
"@feathersjs/knex": "^5.0.0-pre.26",
"@feathersjs/koa": "^5.0.0-pre.26",
"@feathersjs/mongodb": "^5.0.0-pre.26",
"@feathersjs/schema": "^5.0.0-pre.26",
"@feathersjs/socketio": "^5.0.0-pre.26",
"@feathersjs/transport-commons": "^5.0.0-pre.26",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.1",
"@types/prettier": "^2.6.3",
"axios": "^0.27.2",
"mocha": "^10.0.0",
"shx": "^0.3.4",
"ts-node": "^10.8.2",
"type-fest": "^2.16.0",
"typescript": "^4.7.4"
},
"gitHead": "0e7553ded9b24016d36021aaedcc2cdb19ab0157"
}