-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "serverless-cognito-add-custom-attributes",
"version": "0.3.0",
"description": "Add custom attributes to an existing CloudFormation-managed CognitoUserPool and CognitoUserPoolClient without losing all your users.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive \"./tests/*.js\"",
"lint": "eslint index.js helperMethods.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelduminy/serverless-cognito-add-custom-attributes.git"
},
"files": [
".eslintrc",
"helperMethods.js",
"index.js",
"LICENSE",
"package.json",
"README.md"
],
"keywords": [
"serverless",
"cognito"
],
"author": "Michael Duminy (https://github.com/michaelduminy)",
"license": "MIT",
"maintainers": ["Jared Leonard (https://github.com/jmaleonard)"],
"bugs": {
"url": "https://github.com/michaelduminy/serverless-cognito-add-custom-attributes/issues"
},
"homepage": "https://github.com/michaelduminy/serverless-cognito-add-custom-attributes#readme",
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.6.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"proxyquire": "^2.1.0",
"sinon": "^6.3.3"
}
}