-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.73 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.73 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
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
95
96
97
98
99
100
101
102
{
"name": "feathers-sequelize",
"description": "A service adapter for Sequelize an SQL ORM",
"version": "8.0.0-pre.3",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize",
"keywords": [
"feathers",
"feathers-plugin",
"sequel",
"sequelize",
"mysql",
"sqlite",
"mariadb",
"postgres",
"pg",
"mssql",
"database"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-sequelize.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-sequelize/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",
"type": "module",
"engines": {
"node": ">= 20"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**"
],
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "unbuild",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-sequelize && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"update-dependencies": "ncu -u",
"release:prerelease": "npm version prerelease --preid pre && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "eslint",
"test": "mocha",
"coverage": "c8 npm run mocha"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.34",
"@feathersjs/commons": "^5.0.34",
"@feathersjs/errors": "^5.0.34"
},
"devDependencies": {
"@feathers-community/eslint-config": "^0.0.6",
"@feathersjs/adapter-tests": "^5.0.34",
"@feathersjs/feathers": "^5.0.34",
"@tsconfig/node22": "^22.0.1",
"@types/chai": "^5.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.3",
"@types/pg": "^8.11.14",
"c8": "^10.1.3",
"chai": "^5.2.0",
"eslint": "^9.26.0",
"mariadb": "^3.4.2",
"mocha": "^11.2.2",
"mysql2": "^3.14.1",
"npm-check-updates": "^18.0.1",
"pg": "^8.15.6",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"shx": "^0.4.0",
"sqlite3": "^5.1.7",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"unbuild": "^3.5.0"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0",
"sequelize": "^6.0.0"
}
}