-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
94 lines (94 loc) · 2.87 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "feathers-reactive",
"description": "Reactive API extensions for Feathers services",
"version": "0.11.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-reactive",
"keywords": [
"feathers",
"feathers-plugin",
"rxjs",
"reactive"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-reactive.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-reactive/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 16"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"dist/**"
],
"scripts": {
"build": "unbuild",
"changelog": "github_changelog_generator --no-issues -p feathers-reactive -u feathersjs-ecosystem && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"publish": "git push origin --tags && npm run changelog && git push origin",
"preversion": "npm run test",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "eslint src/**/*.ts test/**/*.ts --fix",
"test": "npm run build && c8 node --require ts-node/register --test ./test/*.ts",
"test:react": "vitest run --config ./vitest-react.config.ts",
"coverage": "vitest run --coverage",
"update-dependencies": "npm-check-updates -u"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.6",
"@feathersjs/commons": "^5.0.6",
"@feathersjs/feathers": "^5.0.6",
"debug": "^4.3.4",
"json-stable-stringify": "^1.0.2",
"rxjs": "^7.8.1",
"sift": "^17.0.1"
},
"devDependencies": {
"@feathersjs/socketio": "^5.0.6",
"@feathersjs/socketio-client": "^5.0.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/debug": "^4.1.8",
"@types/json-stable-stringify": "^1.0.34",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"c8": "^8.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^47.0.0",
"feathers-memory": "^4.1.0",
"jsdom": "^22.1.0",
"ncu": "^0.2.1",
"npm-check-updates": "^16.10.15",
"socket.io-client": "^4.7.1",
"ts-node": "^10.9.1",
"unbuild": "^1.2.1"
}
}