This repository was archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 KB
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
{
"name": "rc-simple-tooltip",
"version": "1.3.20",
"description": "Simple react tooltip component",
"repository": {
"type": "git",
"url": "https://github.com/RenoFi/react-tooltip.git"
},
"bugs": {
"url": "https://github.com/RenoFi/react-tooltip/issues"
},
"keywords": [
"component",
"rc-simple-tooltip",
"react",
"react-component",
"react-tooltip",
"reactjs",
"tooltip"
],
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"author": "RenoFi",
"license": "MIT",
"scripts": {
"clean": "node scripts/cleanBuild.js",
"build": "yarn clean && yarn compile && yarn static",
"compile": "rollup -c",
"watch": "rollup -cw",
"static": "node scripts/copyStyles.js",
"eslint": "eslint --ext .ts src",
"lint": "yarn eslint",
"test": "yarn lint && yarn jest",
"jest": "jest",
"coverage": "jest --coverage",
"start": "start-storybook -p 6006",
"storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@storybook/addon-storysource": "^6.3.2",
"@storybook/addons": "^6.3.2",
"@storybook/react": "^6.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.52.8",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {}
}