This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "coronavirus-hooks",
"version": "1.0.2",
"description": "coronavirus-hooks",
"keywords": [
"coronavirus",
"react",
"hooks"
],
"license": "MIT",
"author": "Simone Busoli <[email protected]>",
"homepage": "https://github.com/simoneb/coronavirus-hooks",
"repository": "simoneb/coronavirus-hooks",
"bugs": "https://github.com/simoneb/coronavirus-hooks/issues",
"main": "cjs/index.js",
"module": "es/index.js",
"files": [
"cjs/",
"es/",
"src/"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf cjs es",
"lint": "eslint src",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"peerDependencies": {
"react": "^16.8.0-0 || ^17.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.0.2",
"@commitlint/config-conventional": "16.0.0",
"@rollup/plugin-image": "2.1.1",
"babel-eslint": "10.1.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"lint-staged": "12.1.7",
"prettier": "2.5.1",
"react": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.63.0",
"standard-version": "9.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-merge": "npm i"
}
},
"lint-staged": {
"src/**/*.{js,md}": [
"eslint --fix"
]
}
}