-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
93 lines (93 loc) · 2.61 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
86
87
88
89
90
91
92
93
{
"name": "feathers-sequelize",
"description": "A service adapter for Sequelize an SQL ORM",
"version": "8.0.0-pre.1",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize",
"main": "lib/",
"types": "lib/",
"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": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-sequelize/issues"
},
"engines": {
"node": ">= 14"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**"
],
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"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 src/**/*.ts test/**/*.ts --fix",
"mocha": "mocha --require ts-node/register",
"test": "npm run lint && npm run coverage",
"coverage": "c8 npm run mocha"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.25",
"@feathersjs/commons": "^5.0.25",
"@feathersjs/errors": "^5.0.25"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^5.0.25",
"@feathersjs/express": "^5.0.25",
"@feathersjs/feathers": "^5.0.25",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.11",
"@types/pg": "^8.11.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"body-parser": "^1.20.2",
"c8": "^8.0.1",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"mocha": "^10.4.0",
"mysql2": "^3.9.7",
"npm-check-updates": "^16.14.20",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"shx": "^0.3.4",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}