forked from serg-io/dynamodb-atomic-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 789 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
{
"name": "dynamodb-atomic-counter",
"author": "Sergio Alcantara <[email protected]> (https://github.com/serg-io)",
"description": "This library provides atomic counters using Amazon DynamoDB.",
"version": "0.1.1",
"homepage": "https://github.com/serg-io/dynamodb-atomic-counter",
"keywords": [
"atomic-counter",
"atomic",
"counter",
"dynamodb",
"aws",
"amazon"
],
"repository": {
"type": "git",
"url": "git://github.com/serg-io/dynamodb-atomic-counter.git"
},
"main": "atomic-counter.js",
"scripts": {
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"aws-sdk": "2.1.26",
"underscore": "1.8.3",
"underscore.deferred": "0.4.0"
},
"devDependencies": {
"nodeunit": "0.9.1"
}
}