-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "dao",
"version": "1.0.3",
"description": "Data Access Object for providing an abstract interface to the database.",
"main": "lib/dao.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive -R spec",
"lint": "./node_modules/.bin/eslint --fix ./"
},
"directories": {
"lib": "./lib"
},
"repository": {
"url": "git+https://github.com/MAXDeliveryNG/DAO.git",
"type": "git"
},
"keywords": [
"DAO",
"Data",
"Access",
"Object",
"DAL",
"Database",
"abstraction"
],
"author": "Bernard Ojengwa <bernardojengwa@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/MAXDeliveryNG/DAO/issues"
},
"homepage": "https://github.com/MAXDeliveryNG/DAO#readme",
"private": true,
"devDependencies": {
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-config-seneca": "^3.0.0",
"eslint-plugin-hapi": "^4.0.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.2.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.2.0",
"should": "^11.2.0"
},
"dependencies": {
"bluebird": "^3.4.7",
"bookshelf": "^0.10.3",
"bookshelf-deep-changed": "^1.0.0",
"bookshelf-history": "^1.0.0",
"bookshelf-postgis": "^0.2.1",
"bookshelf-relationships": "^1.0.1",
"bookshelf-scopes": "^1.5.0",
"knex": "^0.12.7",
"lodash": "^4.17.4",
"pg": "^6.1.2",
"wkx": "^0.4.1"
}
}