forked from wonism/react-kakao-login
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.46 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-kakao-login",
"version": "1.2.2",
"keyword": [
"react",
"reactjs",
"react-component",
"kakao",
"kakaotalk",
"kakao-login",
"kakaotalk-login",
"react-kakao-login",
"react-kakaotalk-login"
],
"description": "Login with Kakaotalk",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --bail --coverage --config jest.config.js",
"test:watch": "jest --watch --config jest.config.js",
"test:badges": "jest-coverage-badges",
"start": "rollup -c rollup.dev.config.js",
"clean": "rm -rf dist",
"build": "rimraf dist && mkdirp dist && rollup -c rollup.prod.config.js",
"build:docs": "NODE_ENV=production npm start",
"lint": "eslint -c .eslintrc.js --fix './src/**/*.ts{,x}'",
"prepare": "npm run lint && npm t && npm run build",
"precommit": "npm run lint && npm t && npm run test:badges",
"docs": "npm run build:docs && push-dir --dir=demo --branch=gh-pages",
"semantic-release": "semantic-release"
},
"author": "wonism <[email protected]> (https://wonism.github.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wonism/react-kakao-login.git"
},
"bugs": {
"url": "https://github.com/wonism/react-kakao-login/issues"
},
"homepage": "https://wonism.github.io/react-kakao-login",
"peerDependencies": {
"react": ">= 15.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.4",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^6.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest": "^25.1.0",
"jest-coverage-badges": "^1.1.2",
"jsdom": "^15.2.1",
"mkdirp": "^0.5.1",
"prettier-eslint-cli": "^5.0.0",
"push-dir": "^0.4.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.0",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"semantic-release": "^17.0.4",
"styled-components": "^5.0.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {}
}