This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
executable file
·66 lines (66 loc) · 1.99 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
{
"name": "amazon-cognito-auth-js",
"description": "Amazon Cognito Auth JavaScript SDK",
"version": "1.3.3",
"author": {
"name": "Amazon Web Services",
"email": "[email protected]",
"url": "http://aws.amazon.com"
},
"homepage": "http://aws.amazon.com/cognito",
"contributors": [
"Crystal Wang <[email protected]>",
"Mahesh Reddy <[email protected]>",
"Ionut Trestian <[email protected]>",
"Tim Hunt <[email protected]>",
"Diane Olsen <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/aws/amazon-cognito-auth-js.git"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://aws.amazon.com/apache2.0/"
}
],
"keywords": [
"amazon",
"aws",
"cognito",
"auth"
],
"scripts": {
"clean": "rimraf lib es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack dist/amazon-cognito-auth.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack dist/amazon-cognito-auth.min.js",
"build": "npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"doc": "jsdoc src -d docs",
"lint": "eslint src"
},
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"cross-env": "^3.2.4",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-plugin-import": "^1.13.0",
"jsdoc": "^3.4.0",
"rimraf": "^2.6.2",
"webpack": "^1.13.1"
},
"dependencies": {
"js-cookie": "^2.1.4"
}
}