-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "react-twitter-auth",
"version": "0.0.13",
"description": "A Twitter loging component",
"scripts": {
"build:develop": "cross-env NODE_ENV=development webpack src/index.js lib/react-twitter-auth-component.js",
"build:production": "cross-env NODE_ENV=production webpack src/index.js lib/react-twitter-auth-component.min.js",
"lint": "eslint src/ --fix",
"clean": "rm -rf node_modules && rm -rf bin",
"test": "jest --config jest.config.json --coverage",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"main": "lib/react-twitter-auth-component.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GenFirst/react-twitter-auth.git"
},
"keywords": [
"React",
"Twitter",
"Login",
"Auth",
"oauth",
"component"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GenFirst/react-twitter-auth/issues"
},
"peerDependencies": {
"react": "> 15.5.0 < 17",
"react-dom": "> 15.5.0 < 17",
"prop-types": "> 15.5.0 < 17"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "^21.0.2",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"cross-env": "5.0.5",
"enzyme": "^2.9.1",
"eslint": "4.5.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.3.0",
"jest": "^21.1.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.5.0",
"webpack": "3.5.5"
},
"dependencies": {
"react-icons": "^2.2.5",
"url-search-params-polyfill": "^2.0.0",
"whatwg-fetch": "2.0.3"
}
}