forked from feathersjs-ecosystem/feathers-objection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.37 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
{
"name": "feathers-objection",
"description": "A service plugin for ObjectionJS an ORM based on KnexJS",
"version": "0.8.0",
"homepage": "https://github.com/mcchrish/feathers-objection",
"keywords": [
"feathers",
"feathers-plugin",
"knex",
"objection",
"orm"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mcchrish/feathers-objection/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mcchrish/feathers-objection.git"
},
"author": {
"name": "Michael Chris Lopez",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/mcchrish/feathers-objection/issues"
},
"engines": {
"node": ">= 0.12.0"
},
"main": "lib/",
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rm -rf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "standard --fix src/**/*.js test/**/*.js --config",
"mocha": "mocha test/ --compilers js:babel-core/register --timeout 5000",
"test": "npm run compile && npm run lint && npm run mocha",
"example": "babel-node example/app"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"feathers-errors": "^2.4.0",
"feathers-query-filters": "^2.1.0",
"is-plain-object": "^2.0.1",
"uberproto": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"feathers": "^2.0.1",
"feathers-rest": "^1.4.3",
"feathers-service-tests": "^0.9.1",
"knex": "^0.12.6",
"mocha": "^3.1.1",
"objection": "^0.7.12",
"sqlite3": "^3.1.6",
"standard": "^8.3.0"
},
"babel": {
"plugins": [
"transform-object-assign",
"transform-class-properties",
"add-module-exports"
],
"presets": [
"es2015"
]
},
"standard": {
"parser": "babel-eslint"
}
}