-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "@silvermine/dynamodb-table-sync",
"version": "1.3.1",
"description": "utility script for detecting and (optionally) fixing differences between multiple DynamoDB tables (in the same or different regions)",
"main": "src/Synchronizer.js",
"bin": {
"dynamodb-table-sync": "src/cli.js"
},
"scripts": {
"commitlint": "commitlint --from eac7900",
"test": "check-node-version --npm 8.5.5 && nyc mocha -- 'tests/**/*.test.js'",
"eslint": "eslint .",
"markdownlint": "markdownlint -c .markdownlint.json '{,!(node_modules)/**/}*.md'",
"standards": "npm run commitlint && npm run markdownlint && npm run eslint"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/dynamodb-table-sync.git"
},
"keywords": [
"aws",
"dynamodb",
"dynamo",
"database",
"sync",
"multiple",
"regions",
"cross-region",
"replication"
],
"bugs": {
"url": "https://github.com/silvermine/dynamodb-table-sync/issues"
},
"homepage": "https://github.com/silvermine/dynamodb-table-sync#readme",
"dependencies": {
"aws-sdk": "2.690.0",
"class.extend": "0.9.2",
"minimist": "1.2.5",
"q": "1.5.1",
"underscore": "1.13.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/travis-cli": "11.0.0",
"@silvermine/eslint-config": "3.0.1",
"@silvermine/standardization": "2.0.0",
"check-node-version": "4.0.3",
"coveralls": "3.1.0",
"eslint": "6.8.0",
"expect.js": "0.3.1",
"mocha": "8.4.0",
"nyc": "15.1.0",
"rewire": "5.0.0",
"sinon": "9.0.2"
}
}