forked from amazon-archives/amazon-cognito-identity-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.12 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
69
70
71
72
{
"name": "amazon-cognito-identity-js",
"description": "Amazon Cognito Identity Provider JavaScript SDK",
"version": "1.19.0",
"author": {
"name": "Amazon Web Services",
"email": "[email protected]",
"url": "http://aws.amazon.com"
},
"homepage": "http://aws.amazon.com/cognito",
"contributors": [
"Simon Buchan with Skilitics",
"Jonathan Goldwasser",
"Matt Durant",
"John Ferlito",
"Michael Hart",
"Tylor Steinberger",
"Paul Watts",
"Gleb Promokhov",
"Chetan Mehta <[email protected]>",
"Ionut Trestian <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/aws/amazon-cognito-identity-js.git"
},
"license": "SEE LICENSE IN LICENSE.txt",
"licenses": [
{
"type": "Amazon Software License",
"url": "http://aws.amazon.com/asl"
}
],
"keywords": [
"amazon",
"aws",
"cognito",
"identity"
],
"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-identity.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack dist/amazon-cognito-identity.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",
"types": "./index.d.ts",
"dependencies": {
"aws-sdk": "^2.6.0"
},
"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.1.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.5.4",
"webpack": "^1.13.1"
}
}