-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
{
"name": "@silvermine/dynamodb-capacity-manager",
"version": "1.1.0",
"description": "Library for monitoring throughput on DynamoDB tables and adjusting it for you based on real-time usage. Can be run as a Lambda function.",
"main": "src/index.js",
"scripts": {
"commitlint": "commitlint --from e1f08dc",
"check-node-version": "check-node-version --npm 10.5.0",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'src/tests/**/*.test.js'",
"markdownlint": "markdownlint -c .markdownlint.json '{,!(node_modules)/**/}*.md'",
"eslint": "eslint .",
"standards": "npm run markdownlint && npm run eslint"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/dynamodb-capacity-manager.git"
},
"keywords": [
"lambda",
"dynamo",
"dynamodb",
"throughput"
],
"bugs": {
"url": "https://github.com/silvermine/dynamodb-capacity-manager/issues"
},
"homepage": "https://github.com/silvermine/dynamodb-capacity-manager#readme",
"dependencies": {
"class.extend": "0.9.2",
"minimatch": "3.0.4",
"moment": "2.21.0",
"q": "1.5.1",
"regression": "2.0.1",
"underscore": "1.8.3"
},
"devDependencies": {
"@silvermine/eslint-config": "3.0.0-rc.0",
"@silvermine/standardization": "2.0.0",
"aws-sdk": "2.354.0",
"coveralls": "3.0.2",
"eslint": "6.8.0",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"js-yaml": "3.8.4",
"mocha": "5.2.0",
"mocha-lcov-reporter": "1.2.0",
"rewire": "2.5.2",
"sinon": "1.17.5"
}
}