-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "react-drive-picker",
"version": "1.0.0",
"description": "React google drive picker api wrapper hook",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obonyojimmy/react-drive-picker.git"
},
"author": "obonyojimmy",
"license": "MIT",
"bugs": {
"url": "https://github.com/obonyojimmy/react-drive-picker/issues"
},
"homepage": "https://github.com/obonyojimmy/react-drive-picker#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@types/jest": "^26.0.18",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-loader": "^8.2.2",
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {},
"peerDependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}