forked from victorquinn/dynasty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dynasty",
"version": "0.2.4",
"description": "Dynasty - Promise-based DynamoDB API",
"homepage": "http://dynastyjs.com",
"author": "Victor Quinn <[email protected]>",
"contributors": [
"Mike Atkins (https://github.com/apechimp)",
"Ben McIlwain (https://github.com/cydeweys)",
"Tim Huff (https://github.com/timhuff)"
],
"bugs": {
"url": "https://github.com/victorquinn/dynasty/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/victorquinn/dynasty.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://dynastyjs.com/license/"
}
],
"files": [
"lib",
"test"
],
"devDependencies": {
"chance": "^0.8.0",
"chai": "1.5",
"grunt": "*",
"grunt-cli": "*",
"grunt-coffeelint": "*",
"grunt-contrib-coffee": "^0.12.0",
"grunt-contrib-watch": "*",
"grunt-simple-mocha": "*",
"grunt-shell": "~0.4.0",
"mocha": "*",
"requirejs": "2.1.6",
"sinon": "1.7.3",
"chai-as-promised": "~3.3.1",
"docco": "~0.6.2",
"coffee-script": "^1.6.3",
"diff": "^1.0.8"
},
"scripts": {
"build": "grunt coffee",
"prepublish": "grunt coffee",
"postpublish": "rm -rf lib",
"test": "grunt test"
},
"directories": {
"lib": "src/lib"
},
"main": "lib/dynasty.js",
"keywords": [
"dynamodb",
"aws",
"amazon",
"promise",
"dynasty",
"database"
],
"dependencies": {
"aws-sdk": "^2.1.0",
"bluebird": "^2.3.11",
"debug": "^2.1.0",
"lodash": "^3.10.1",
"require-directory": "^2.0.0"
}
}