forked from apolishch/node-bookshelf-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 966 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
{
"name": "bookshelf-soft-delete",
"version": "4.0.0",
"description": "Soft Delete for Bookshelf.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/lanetix/node-bookshelf-soft-delete.git"
},
"keywords": [
"bookshelf",
"orm",
"soft-delete"
],
"author": "Abraham Polishchuk <[email protected]> (https://github.com/apolishch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lanetix/node-bookshelf-soft-delete/issues"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "eslint --ignore-path .gitignore .",
"mocha": "mocha"
},
"homepage": "https://github.com/lanetix/node-bookshelf-soft-delete",
"dependencies": {
"bluebird": "^2.3.11"
},
"devDependencies": {
"bookshelf": "^0.9.1",
"eslint": "^0.13.0",
"eslint-plugin-nodeca": "^1.0.3",
"knex": "^0.7.3",
"mocha": "^2.1.0",
"should": "^4.6.3",
"sqlite3": "^3.0.4"
}
}