-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.05 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
{
"name": "energy-db",
"version": "v0.0.7",
"description": "a sane and easy to use wrapper around AWS DynamoDB",
"keywords": [
"DynamoDB",
"dynamodb",
"dynamo-db",
"energy-db",
"dynamo-doc",
"database",
"NoSQL",
"amazon web services",
"aws"
],
"author": {
"name": "Victor Schröder",
"email": "schrodervictor@gmail.com"
},
"contributors": [
{
"name": "Victor Schröder",
"email": "schrodervictor@gmail.com"
}
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/schrodervictor/energy-db.git"
},
"maintainers": [
{
"name": "Victor Schröder",
"email": "schrodervictor@gmail.com"
}
],
"main": "./index",
"dependencies": {
"aws-sdk": "^2.2.0",
"dynamo-doc": "^0.1.1",
"node-uuid": "^1.4.3"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.3.2",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive \"tests/**/*.test.js\""
}
}