forked from aaronshaf/dynamodb-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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": "dynamodb-admin",
"version": "3.2.0",
"description": "GUI for DynamoDB. Useful for local development.",
"main": "lib/backend.js",
"bin": "./bin/dynamodb-admin.js",
"scripts": {
"dev": "nodemon bin/dynamodb-admin.js",
"start": "node bin/dynamodb-admin.js",
"lint": "eslint --ext .js .",
"fix": "eslint --ext .js --fix .",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronshaf/dynamodb-viewer.git"
},
"keywords": [
"DynamoDB",
"Dynamo"
],
"author": "Aaron Shafovaloff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronshaf/dynamodb-viewer/issues"
},
"homepage": "https://github.com/aaronshaf/dynamodb-viewer#readme",
"dependencies": {
"argparse": "^1.0.10",
"aws-sdk": "^2.411.0",
"body-parser": "^1.18.3",
"cli-color": "^1.3.0",
"ejs": "^2.6.1",
"errorhandler": "^1.4.3",
"es7-object-polyfill": "0.0.7",
"express": "^4.16.3",
"lodash": "^4.17.11",
"opn": "^5.4.0"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-plugin-jest": "^22.3.0",
"husky": "^1.3.1",
"jest-cli": "^24.1.0",
"nodemon": "^1.18.10"
}
}