-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name" : "dynamodb-engine",
"version" : "1.2.0",
"description" : "A promisified Node.js engine for AWS DynamoDB.",
"author" : "Odd Networks (http://oddnetworks.co)",
"main" : "./lib/dynamodb-engine",
"scripts" : {
"lint": "xo",
"test": "xo && jasmine"
},
"repository": {
"type" : "git",
"url" : "https://github.com/oddnetworks/dynamodb-engine.git"
},
"homepage": "https://github.com/oddnetworks/dynamodb-engine/",
"dependencies": {
"aws-sdk" : "~2.44.0",
"bluebird" : "~3.5.0",
"brixx" : "~1.6.0",
"debug" : "~2.6.0",
"lodash" : "~4.17.0"
},
"devDependencies": {
"dynalite" : "~1.2.0",
"filepath" : "~1.1.0",
"immutable": "~3.8.0",
"jasmine" : "~2.5.0",
"xo" : "~0.18.0"
},
"bugs": {"url": "https://github.com/oddnetworks/dynamodb-engine/issues"},
"license": "MIT",
"xo": {
"esnext": false,
"ignores": [
"data/**"
],
"envs": [
"node"
],
"rules": {
"func-names": 0,
"unicorn/prefer-starts-ends-with": 0,
"no-use-extend-native/no-use-extend-native": 0,
"capitalized-comments": 0
}
}
}