mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
89 lines
2.4 KiB
JSON
89 lines
2.4 KiB
JSON
{
|
|
"name": "@feathersjs/cli",
|
|
"description": "The command line interface for creating Feathers applications",
|
|
"version": "5.0.0-pre.33",
|
|
"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"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@feathershq/pinion": "^0.3.5",
|
|
"chalk": "^4.0.1",
|
|
"commander": "^9.4.1",
|
|
"lodash": "^4.17.21",
|
|
"prettier": "^2.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@feathersjs/authentication": "^5.0.0-pre.33",
|
|
"@feathersjs/authentication-client": "^5.0.0-pre.33",
|
|
"@feathersjs/authentication-local": "^5.0.0-pre.33",
|
|
"@feathersjs/authentication-oauth": "^5.0.0-pre.33",
|
|
"@feathersjs/configuration": "^5.0.0-pre.33",
|
|
"@feathersjs/errors": "^5.0.0-pre.33",
|
|
"@feathersjs/express": "^5.0.0-pre.33",
|
|
"@feathersjs/feathers": "^5.0.0-pre.33",
|
|
"@feathersjs/knex": "^5.0.0-pre.33",
|
|
"@feathersjs/koa": "^5.0.0-pre.33",
|
|
"@feathersjs/mongodb": "^5.0.0-pre.33",
|
|
"@feathersjs/rest-client": "^5.0.0-pre.33",
|
|
"@feathersjs/schema": "^5.0.0-pre.33",
|
|
"@feathersjs/socketio": "^5.0.0-pre.33",
|
|
"@feathersjs/transport-commons": "^5.0.0-pre.33",
|
|
"@feathersjs/typebox": "^5.0.0-pre.33",
|
|
"@types/mocha": "^10.0.0",
|
|
"@types/node": "^18.11.9",
|
|
"@types/prettier": "^2.7.1",
|
|
"axios": "^1.1.3",
|
|
"mocha": "^10.1.0",
|
|
"shx": "^0.3.4",
|
|
"ts-node": "^10.9.1",
|
|
"type-fest": "^3.1.0",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"gitHead": "89f516bcb1457e23a02c6212e9cd8bacc4d267d4"
|
|
}
|