-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "sails-restful-adapter",
"version": "0.1.0",
"description": "A sails adapter for Sails / Waterline to use a rest api as data source",
"main": "index.js",
"scripts": {
"test": "node test/run-standard-tests",
"pretest": "npm run lint",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git://github.com/eldomagan/sails-restful-adapter.git"
},
"keywords": [
"sails-restful-adapter",
"adapter",
"sails",
"sails.js",
"waterline",
"orm",
"database-adapter"
],
"author": "Eldo Magan <magan.eldo@gmail.com>",
"license": "MIT",
"dependencies": {
"pluralize": "^8.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"waterline-adapter-tests": "^1.0.0-6"
},
"waterlineAdapter": {
"type": "sails-restful-adapter",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": []
}
}