forked from timhuff/objection-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 955 Bytes
/
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
{
"name": "objection-soft-delete",
"version": "1.0.3",
"description": "A plugin for objection js to support soft delete functionallity",
"main": "index.js",
"scripts": {
"test": "nyc mocha tests.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"keywords": [
"objection",
"objectionjs",
"plugin",
"plugins",
"softdelete",
"delete"
],
"author": {
"name": "Paul Griffin",
"email": "[email protected]"
},
"license": "MIT",
"peerDependencies": {
"objection": "0.x"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"knex": "^0.13.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"objection": "^0.8.9",
"sqlite3": "^3.1.13"
}
}