forked from runk/dynamo-table-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "dynamo-table-extensions",
"version": "1.4.0",
"description": "Adds higher-level methods to dynamo-table",
"main": "index.js",
"scripts": {
"test": "mocha -t 100s",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- -t 10s",
"postversion": "git push -u origin $(git rev-parse --abbrev-ref HEAD) --follow-tags && npm publish && echo '…released.'",
"preversion": "echo 'Releasing…' && npm ci",
"release:major": "npm version major -m 'build: release major version %s'",
"release:minor": "npm version minor -m 'build: release minor version %s'",
"release:patch": "npm version patch -m 'build: release patch version %s'"
},
"repository": {
"type": "git",
"url": "https://github.com/Adslot/dynamo-table-extensions.git"
},
"keywords": [
"dynamo",
"dynamodb",
"mapping"
],
"author": "Francesco Orsenigo <[email protected]> (http://github.com/xarvh)",
"contributors": [
"Dmitry Shirokov <[email protected]>"
],
"license": "MIT",
"dependencies": {
"async": "^3.2.6"
},
"devDependencies": {
"mocha": "^11.0.1"
},
"engines": {
"node": "^22"
}
}