This repository has been archived by the owner on Apr 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
86 lines (86 loc) · 2.71 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
{
"name": "react-cognito",
"scope": "winjer",
"version": "1.5.4",
"description": "Use Amazon Cognito with React and Redux",
"main": "dist/react-cognito.js",
"repository": {
"type": "git",
"url": "https://github.com/isotoma/react-cognito.git"
},
"author": "Doug Winter",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/isotoma/react-cognito/issues"
},
"homepage": "https://github.com/isotoma/react-cognito",
"keywords": [
"react-component",
"react"
],
"options": {
"mocha": "--require scripts/mocha_runner test/*.js"
},
"scripts": {
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "PWD=$(pwd) NODE_ENV=test mocha $npm_package_options_mocha || true",
"debug": "PWD=$(pwd) NODE_ENV=test mocha --debug-brk --inspect $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"examples": "[ -d examples/htdocs/dist ] || mkdir examples/htdocs/dist; babel --plugins transform-es2015-modules-umd src --ignore __tests__ examples/src --out-file examples/htdocs/dist/bundle.js",
"doc": "esdoc",
"prepublish": "webpack -d; webpack -p"
},
"devDependencies": {
"amazon-cognito-identity-js": "1.19.0",
"aws-sdk": "2.92.0",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"enzyme": "^2.2.0",
"esdoc": "^0.5.2",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"karma-webpack": "^1.8.1",
"local-web-server": "^1.2.6",
"mocha": "^3.2.0",
"nodemon": "^1.9.1",
"react": "^15.4.1",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0",
"react-dom": "~0.14.8 || ^15.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"prop-types": "^15.5.10"
}
}