-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.21 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
{
"name": "feathers-rpc",
"version": "0.0.0-releaseit",
"description": "An RPC middleware for FeathersJS v4/v5",
"main": "lib",
"types": "lib/",
"directories": {
"lib": "lib",
"test": "test"
},
"peerDependencies": {
"@feathersjs/errors": "^5.0.0-pre.38 || ^4.5.12"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/register": "^7.24.6",
"@feathersjs/errors": "^5.0.29",
"@feathersjs/koa": "^5.0.29",
"@release-it/conventional-changelog": "^8.0.1",
"conventional-changelog-angular": "^8.0.0",
"cors": "^2.8.5",
"eslint": "^9.9.1",
"f4": "npm:@feathersjs/feathers@^4.0.0",
"f4_exp": "npm:@feathersjs/express@^4.0.0",
"f5": "npm:@feathersjs/feathers@^5.0.29",
"f5_exp": "npm:@feathersjs/express@^5.0.29",
"mocha": "^10.7.3",
"nyc": "^17.0.0",
"release-it": "^17.6.0",
"semistandard": "^17.0.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "semistandard --fix",
"mocha": "mocha --recursive test/**/*.test.js",
"build": "babel src -d lib",
"test": "printf '\\33c\\e[3J' && npm run lint && npm run coverage",
"test:dev": "printf '\\33c\\e[3J' && npm run lint && npm run mocha -- --watch --esm --watch-files ./test/**/*,./src/**",
"coverage": "nyc npm run mocha",
"release": "release-it --dry-run --ci --config .release-it.js"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"examples/",
"node_modules",
"lib/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesvillarrubia/feathers-rpc.git"
},
"keywords": [
"feathers",
"rpc",
"feathers-plugin"
],
"author": {
"name": "James Villarrubia",
"email": "[email protected]"
},
"contributors": [
{
"name": "James Villarrubia",
"email": "[email protected]"
},
{
"name": "Ben Zelinski",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesvillarrubia/feathers-rpc/issues"
},
"homepage": "https://github.com/jamesvillarrubia/feathers-rpc#readme"
}