-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "@sungly/cognito-cli",
"version": "1.4.0",
"description": "CLI for all Cognito user life cycle management ",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": ". scripts/build.sh",
"cognito": "npm run build && node lib/index.js",
"audit": "npx npm-audit-resolver@2.1.0 check-audit",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sungly/cognito-cli.git"
},
"keywords": [
"cognito",
"user-management",
"user-authentication"
],
"bin": {
"cognito-cli": "./bin/index.js"
},
"author": "Ly Sung, Rocella Jimenez",
"license": "MIT",
"bugs": {
"url": "https://github.com/sungly/cognito-cli/issues"
},
"homepage": "https://github.com/sungly/cognito-cli#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"amazon-user-pool-srp-client": "^1.0.4",
"aws-sdk": "^2.667.0",
"babel-cli": "^6.26.0",
"bluebird": "^3.7.2",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"minimist": "^1.2.5",
"prompt": "^1.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.5",
"@semantic-release/release-notes-generator": "^7.3.5",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.7"
}
}