-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.06 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
{
"name": "@feathersjs/schema",
"description": "A common data schema definition format",
"version": "5.0.25",
"homepage": "https://feathersjs.com",
"main": "lib/src",
"types": "lib/src",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
},
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git",
"directory": "packages/schema"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 12"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"*.d.ts",
"*.js"
],
"scripts": {
"compile": "shx rm -rf lib/ && tsc",
"mocha": "mocha --config .mocharc.json --recursive test/**.test.ts test/**/*.test.ts",
"test": "npm run compile && npm run mocha",
"prettier": "npx prettier \"**/{,!(node_modules)/**/(src|test)/**/}*.ts\" --write",
"eslint": "eslint \"**/*.ts\" --fix",
"lint": "npm run prettier && npm run eslint"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.25",
"@feathersjs/commons": "^5.0.25",
"@feathersjs/errors": "^5.0.25",
"@feathersjs/feathers": "^5.0.25",
"@feathersjs/hooks": "^0.9.0",
"@types/json-schema": "^7.0.15",
"ajv": "^8.13.0",
"ajv-formats": "^3.0.1",
"json-schema-to-ts": "^3.0.1"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.25",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"ajv-formats": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.4.0",
"mongodb": "^6.6.1",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}