-
-
Notifications
You must be signed in to change notification settings - Fork 798
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@feathersjs/cli",
"description": "The command line interface for creating Feathers applications",
"version": "5.0.0-pre.34",
"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/**",
"lib/app/static/.gitignore",
"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",
"node-fetch": "^2.6.1",
"prettier": "^2.8.0"
},
"devDependencies": {
"@feathersjs/adapter-commons": "^5.0.0-pre.34",
"@feathersjs/authentication": "^5.0.0-pre.34",
"@feathersjs/authentication-client": "^5.0.0-pre.34",
"@feathersjs/authentication-local": "^5.0.0-pre.34",
"@feathersjs/authentication-oauth": "^5.0.0-pre.34",
"@feathersjs/configuration": "^5.0.0-pre.34",
"@feathersjs/errors": "^5.0.0-pre.34",
"@feathersjs/express": "^5.0.0-pre.34",
"@feathersjs/feathers": "^5.0.0-pre.34",
"@feathersjs/knex": "^5.0.0-pre.34",
"@feathersjs/koa": "^5.0.0-pre.34",
"@feathersjs/mongodb": "^5.0.0-pre.34",
"@feathersjs/rest-client": "^5.0.0-pre.34",
"@feathersjs/schema": "^5.0.0-pre.34",
"@feathersjs/socketio": "^5.0.0-pre.34",
"@feathersjs/transport-commons": "^5.0.0-pre.34",
"@feathersjs/typebox": "^5.0.0-pre.34",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.10",
"@types/prettier": "^2.7.1",
"axios": "^1.2.0",
"mocha": "^10.1.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"type-fest": "^3.3.0",
"typescript": "^4.9.3"
},
"gitHead": "42cca600d00f0b3b9d89fa79be30fcd46bc50132"
}