This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "react-oauth-flow",
"version": "0.0.0-development",
"repository": "[email protected]:adambrgmn/react-oauth-flow.git",
"author": "Adam Bergman <[email protected]>",
"license": "MIT",
"main": "dist/react-oauth-flow.js",
"umd:main": "dist/react-oauth-flow.umd.js",
"module": "dist/react-oauth-flow.m.js",
"source": "src/index.js",
"scripts": {
"build": "microbundle",
"test": "jest",
"lint": "eslint",
"format": "prettier",
"contributors": "all-contributors"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cz-conventional-changelog": "^2.1.0",
"doctoc": "^1.3.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"husky": "^1.0.0-rc.13",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.5.0",
"jest-dom": "^1.12.0",
"lint-staged": "^7.2.2",
"microbundle": "^0.6.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-testing-library": "^5.0.0"
},
"dependencies": {
"qs": "^6.5.1"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"hooks": {
"pre-commit": "lint-staged"
}
}