-
-
Notifications
You must be signed in to change notification settings - Fork 798
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"name": "@feathersjs/feathers",
"description": "A framework for real-time applications and REST API with JavaScript and TypeScript",
"version": "4.5.21",
"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": "github",
"url": "https://github.com/sponsors/daffl"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"*.d.ts",
"*.js"
],
"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.21",
"debug": "^4.4.3",
"events": "^3.3.0",
"uberproto": "^2.0.6"
},
"devDependencies": {
"mocha": "^9.2.2"
},
"gitHead": "d0e9600002975296ab8de926acd317d0a73fce5c"
}