-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "awesome-mui-ripple",
"description": "Add MUI ripple effect to your React components",
"keywords": [
"ripple",
"mui",
"react",
"component",
"material ui",
"material design",
"ripple effect",
"material-ripple"
],
"version": "1.0.2",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./types/index.d.ts",
"files": [
"dist/**/*",
"types/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/arsamsarabi/awesome-mui-ripple.git"
},
"bugs": {
"url": "https://github.com/arsamsarabi/awesome-mui-ripple/issues"
},
"homepage": "https://github.com/arsamsarabi/awesome-mui-ripple",
"author": "Arsam Sarabi <arsamsarabi@me.com> (https://arsam.dev)",
"license": "MIT",
"scripts": {
"cleanup": "rimraf dist",
"rollup": "rollup -c",
"build": "yarn cleanup && yarn rollup",
"prettier": "npx prettier --write src",
"eslint": "eslint src --ext .ts --fix",
"lint": "yarn eslint && yarn prettier",
"prepublishOnly": "yarn build && yarn pack",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.53.1",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.ts": "yarn lint"
},
"dependencies": {},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}