-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 947 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 947 Bytes
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
{
"name": "dynatable",
"version": "0.0.7",
"description": "A wrapper for DynamoDB tables, with a promise wrapped simplified API for the AWS SDK's DynamoDB.DocumentClient",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"prepublish": "npm run test && npm run build",
"test": "jest --coverage",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanderzon/dynatable.git"
},
"keywords": [
"dynamodb"
],
"author": "Fredrik Andersson <f.anderzon@gmail.com> (http://fredrik.anderzon.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fanderzon/dynatable/issues"
},
"homepage": "https://github.com/fanderzon/dynatable#readme",
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-preset-es2015": "6.18.0",
"buble": "0.15.2",
"jest": "18.1.0",
"rollup": "0.41.1",
"rollup-plugin-buble": "0.15.0"
}
}