-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
80 lines (80 loc) · 2.6 KB
/
package.json
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
{
"name": "@kalisio/feathers-distributed",
"description": "Distribute your Feathers services as microservices",
"version": "2.4.0",
"homepage": "https://github.com/kalisio/feathers-distributed",
"main": "lib/index.js",
"types": "types/index.d.ts",
"type": "module",
"keywords": ["feathers", "feathers-plugin"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/feathers-distributed.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/feathers-distributed/issues"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version --force patch && npm publish --access public",
"release:minor": "npm version --force minor && npm publish --access public",
"release:major": "npm version --force major && npm publish --access public",
"lint": "standard lib/**/*.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit --timeout 30000",
"coverage": "c8 npm run mocha",
"test": "npm run lint && npm run coverage",
"start:gateway": "cd example/gateway && yarn install && cross-env PORT=3030 npm start",
"start:service1": "cd example/service && yarn install && cross-env PORT=3031 npm start",
"start:service2": "cd example/service && cross-env PORT=3032 npm start",
"start": "npm-run-all --parallel start:**"
},
"standard": {
"sourceType": "module",
"env": ["mocha"]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/commons": "^5.0.8",
"@feathersjs/errors": "^5.0.8",
"@feathersjs/feathers": "^5.0.8",
"cote": "^1.0.3",
"debug": "^4.3.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@feathersjs/authentication": "^5.0.8",
"@feathersjs/authentication-client": "^5.0.8",
"@feathersjs/authentication-local": "^5.0.8",
"@feathersjs/rest-client": "^5.0.8",
"@feathersjs/socketio-client": "^5.0.8",
"@feathersjs/errors": "^5.0.8",
"@feathersjs/express": "^5.0.8",
"@feathersjs/memory": "^5.0.8",
"@feathersjs/socketio": "^5.0.8",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-lint": "^0.1.1",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.3",
"feathers-hooks-common": "^6.1.5",
"mocha": "^9.2.2",
"mongodb": "^4.5.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"socket.io-client": "^4.4.1",
"standard": "^17.0.0",
"superagent": "^7.1.1",
"why-is-node-running": "^2.2.1"
}
}