-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
91 lines (91 loc) · 2.47 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
{
"name": "feathers-knex",
"description": "A service plugin for KnexJS a query builder for PostgreSQL, MySQL and SQLite3",
"version": "8.0.1",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-knex",
"keywords": [
"feathers",
"feathers-plugin"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs-ecosystem/feathers-knex/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-knex.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-knex/issues"
},
"engines": {
"node": ">= 6"
},
"main": "lib/",
"types": "types",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/**",
"*.d.ts",
"*.js"
],
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator --user feathersjs-ecosystem --project feathers-knex && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"update-dependencies": "ncu -u",
"lint": "semistandard --fix",
"dtslint": "dtslint types",
"mocha": "shx rm -rf *.sqlite && mocha test/",
"test": "npm run lint && npm run dtslint && npm run coverage",
"example": "babel-node example/app",
"coverage": "nyc npm run mocha"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.15",
"@feathersjs/commons": "^4.5.15",
"@feathersjs/errors": "^4.5.15",
"debug": "^4.3.4",
"is-plain-object": "^5.0.0"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dtslint": "^4.2.1",
"knex": "^2.1.0",
"loud-rejection": "^2.2.0",
"mocha": "^10.0.0",
"npm-check-updates": "^15.0.1",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"semistandard": "^16.0.1",
"shx": "^0.3.4",
"sqlite3": "^5.0.8",
"typescript": "^4.7.4"
}
}