forked from feathersjs-ecosystem/feathers-objection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.32 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "feathers-objection",
"description": "A service plugin for ObjectionJS an ORM based on KnexJS",
"version": "7.5.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-objection",
"keywords": [
"feathers",
"feathers-plugin",
"feathersjs",
"knex",
"objection",
"orm",
"mysql",
"postgres",
"postgresql",
"redshift"
],
"license": [
{
"type": "MIT",
"url": "https://github.com/feathersjs-ecosystem/feathers-objection/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-objection.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-objection/issues"
},
"engines": {
"node": ">= 10"
},
"main": "lib/",
"types": "types",
"files": [
"lib",
"types"
],
"scripts": {
"prepare": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && 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",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "semistandard --fix src/**/*.js test/**/*.js --config",
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
"mocha": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run compile && npm run lint && npm run dtslint && npm run mocha",
"example": "babel-node example/app"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.11",
"@feathersjs/errors": "^4.5.11"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.14.1",
"@babel/register": "^7.13.16",
"@feathersjs/adapter-tests": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"dtslint": "^3.4.2",
"knex": "0.21.18",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"objection": "^2.2.15",
"rimraf": "^3.0.2",
"semistandard": "^16.0.0",
"sqlite3": "^5.0.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"objection": ">=2.0.0"
},
"babel": {
"plugins": [
"transform-object-assign",
"transform-class-properties",
"add-module-exports"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
]
]
},
"nyc": {
"exclude": [
"test/**",
"lib/**",
"example/**"
]
},
"semistandard": {
"parser": "babel-eslint",
"env": [
"mocha"
],
"ignore": [
"/lib"
]
}
}