-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 975 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
42
43
{
"name": "sails-dynamodb-v1",
"version": "1.0.5",
"description": "A dynamodb adapter for Sails / Waterline compatible with SailsJS v1",
"main": "index.js",
"scripts": {
"start": "node app.js",
"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/amitphulera/sails-dynamodb-v1.git"
},
"keywords": [
"dynamodb",
"adapter",
"sails",
"sails.js",
"waterline",
"orm",
"database-adapter",
"aws"
],
"author": "Amit Phulera <amitphulera999@gmail.com>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.517.0"
},
"devDependencies": {
"eslint": ">=4.18.2",
"waterline-adapter-tests": "^1.0.0-6"
},
"waterlineAdapter": {
"type": "sails-dynamodb-v1",
"interfaces": [
"semantic",
"queryable"
],
"features": []
}
}