-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.66 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "amazon-cognito-identity-js",
"description": "Amazon Cognito Identity Provider JavaScript SDK",
"version": "2.0.7-unstable.18",
"author": {
"name": "Amazon Web Services",
"email": "aws@amazon.com",
"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",
"Min Bi",
"Michael Labieniec",
"Chetan Mehta <chetam@amazon.com>",
"Ionut Trestian <trestian@amazon.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-amplify.git"
},
"license": "See LICENSE",
"licenses": [
{
"type": "Amazon Software License",
"url": "http://aws.amazon.com/asl"
}
],
"keywords": [
"amazon",
"aws",
"cognito",
"identity",
"react-native",
"reactnative"
],
"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 -p dist/amazon-cognito-identity.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack -p 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",
"test": "eslint src",
"lint2": "eslint enhance-rn.js"
},
"main": "lib/index.js",
"react-native": {
"lib/index.js": "./enhance-rn.js",
"./src/StorageHelper": "./src/StorageHelper-rn.js"
},
"module": "es/index.js",
"jsnext:main": "es/index.js",
"types": "./index.d.ts",
"dependencies": {
"buffer": "4.9.1",
"crypto-browserify": "1.0.9",
"js-cookie": "^2.1.4"
},
"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",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^3.1.4",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jsdoc": "^3.4.0",
"react": "^16.0.0",
"react-native": "^0.44.0",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
}
}