forked from feathersjs-ecosystem/feathers-objection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.27 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
{
"name": "feathers-objection",
"description": "A service plugin for ObjectionJS an ORM based on KnexJS",
"version": "4.7.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-objection",
"keywords": [
"feathers",
"feathers-plugin",
"feathersjs",
"knex",
"objection",
"orm"
],
"licenses": [
{
"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": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-objection/issues"
},
"engines": {
"node": ">= 8"
},
"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 --opts mocha.opts",
"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.4.3",
"@feathersjs/errors": "^4.4.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"@feathersjs/adapter-tests": "^4.4.3",
"@feathersjs/express": "^4.4.3",
"@feathersjs/feathers": "^4.4.3",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"dtslint": "^2.0.2",
"knex": "^0.20.4",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"objection": "^2.0.10",
"rimraf": "^3.0.0",
"semistandard": "^14.2.0",
"sqlite3": "^4.1.1"
},
"peerDependencies": {
"objection": ">=1.0.0"
},
"babel": {
"plugins": [
"transform-object-assign",
"transform-class-properties",
"add-module-exports"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
},
"nyc": {
"exclude": [
"test/**",
"lib/**",
"example/**"
]
},
"semistandard": {
"parser": "babel-eslint",
"env": [
"mocha"
],
"ignore": [
"/lib"
]
}
}