-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.52 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
59
60
61
62
63
64
65
66
67
68
{
"name": "cognitocurl",
"description": "CLI for making AWS Cognito signed requests to API Gateway",
"version": "0.2.3",
"author": "Jakub Holak",
"bin": {
"cognitocurl": "./bin/run"
},
"bugs": "https://github.com/nordcloud/cognitocurl",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/express": "^4.16.1",
"@types/node-fetch": "^2.1.2",
"@types/opn": "^5.1.0",
"aws-amplify": "^1.1.9",
"aws-sdk": "^2.347.0",
"cli-ux": "^4.9.3",
"conf": "^2.0.0",
"express": "^4.16.4",
"express-ws": "^4.0.0",
"node-fetch": "^3.1.1",
"node-persist": "^3.0.1",
"opn": "^5.4.0",
"query-string-params": "^1.7.5",
"serve-static": "^1.13.2",
"tslib": "^1",
"websocket": "^1.0.28"
},
"devDependencies": {
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"ts-node": "^7",
"tslint": "^5",
"typescript": "^3.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/hostedui/dist"
],
"homepage": "https://github.com/nordcloud/cognitocurl",
"keywords": [
"aws",
"cognito",
"api gateway",
"curl",
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "cognitocurl"
},
"repository": "nordcloud/cognitocurl",
"scripts": {
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts"
}