-
-
Notifications
You must be signed in to change notification settings - Fork 797
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "@feathersjs/feathers",
"description": "A framework for real-time applications and REST API with JavaScript and TypeScript",
"version": "4.5.3",
"homepage": "http://feathersjs.com",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"keywords": [
"feathers",
"REST",
"socket.io",
"realtime"
],
"main": "lib/index.js",
"types": "index.d.ts",
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/feathers"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha --config ../../.mocharc.json",
"write-version": "node -e \"console.log('module.exports = \\'' + require('./package.json').version + '\\';')\" > lib/version.js",
"reset-version": "node -e \"console.log('module.exports = \\'development\\';')\" > lib/version.js",
"version": "npm run write-version",
"publish": "npm run reset-version"
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathersjs/commons": "^4.5.3",
"debug": "^4.1.1",
"events": "^3.1.0",
"uberproto": "^2.0.6"
},
"devDependencies": {
"mocha": "^8.0.1"
},
"gitHead": "9b9f0f13387341bdd320f1e66feda828fca2c9f2"
}