-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.42 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": "franken-srp",
"version": "1.0.1",
"description": "low level implementation lib for use with aws cognito srp login",
"browser": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo dist",
"build": "npm run clean && tsc --build --force",
"test": "jest",
"cdktest": "jest src/test/cdk",
"cdkdeploy": "cd src/test/cdk && cdk deploy --outputs-file cfn_out.json",
"cdkdestroy": "cd src/test/cdk && cdk destroy",
"createTestUsers": "cd src/test && ts-node createTestUsers > test_users_out.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ravenscar/franken-srp.git"
},
"keywords": [
"cognito",
"srp",
"aws",
"idp"
],
"author": "Paul Nilsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ravenscar/franken-srp/issues"
},
"homepage": "https://github.com/ravenscar/franken-srp#readme",
"devDependencies": {
"@aws-cdk/assert": "1.107.0",
"@aws-cdk/aws-cognito": "^1.107.0",
"@aws-cdk/core": "^1.107.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/uuid": "^8.3.0",
"aws-cdk": "^1.107.0",
"aws-sdk": "^2.923.0",
"jest": "^27.0.4",
"minimal-cognito-totp": "^1.0.1",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"uuid": "^8.3.2"
}
}