-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
72 lines (72 loc) · 1.6 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.3.15",
"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"
},
"license": "MIT",
"files": [
"lib",
"test"
],
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "~7.1.1",
"chance": "^1.0.16",
"coffee-script": "^1.6.3",
"docpress": "^0.7.1",
"git-update-ghpages": "^1.3.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-coffeelint": "^0.0.16",
"grunt-contrib-coffee": "^2.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-shell": "~2.1.0",
"grunt-simple-mocha": "^0.4.1",
"mocha": "^5.2.0",
"requirejs": "2.3.6",
"sinon": "6.3.3"
},
"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.315.0",
"bluebird": "^3.5.2",
"debug": "^4.0.1",
"lodash": "^4.17.11"
},
"docpress": {
"css": [
"docs/dynasty.css"
],
"github": "victorquinn/dynasty"
}
}