-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "electrocli",
"version": "1.0.0",
"description": "Electro is a CLI utility toolbox for extending the functionality of the node library ElectroDB to the terminal.",
"main": "dist/bin/index.js",
"types": "dist/bin/index.d.ts",
"preferGlobal": true,
"bin": {
"electro": "dist/bin/index.js"
},
"scripts": {
"test": "mocha -r ts-node/register ./test/**.spec.ts"
},
"author": "Tyler W. Walch",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.12",
"@types/commander": "^2.12.2",
"@types/handlebars": "^4.1.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"@types/cli-table": "0.3.0",
"@types/express": "4.17.8",
"source-map-support": "^0.5.19"
},
"keywords": [
"electrodb",
"dynamo",
"dynamodb",
"aws"
],
"dependencies": {
"aws-sdk": "2.781.0",
"body-parser": "1.19.0",
"cli-table": "0.3.1",
"colors": "1.4.0",
"commander": "6.1.0",
"electrodb": "^1.0.0",
"express": "4.17.1",
"handlebars": "4.7.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}