forked from cool-hooks/react-wordpress-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.15 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
78
79
80
{
"name": "react-wordpress-hooks",
"version": "3.1.0",
"description": "Set of hooks for WordPress REST API",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/react-wordpress-hooks.cjs.js",
"module": "lib/react-wordpress-hooks.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "npm run clean && npm run prettier && npm run lint && npm run build",
"clean": "rimraf lib/*",
"build": "rollup -c",
"watch": "npm run build -- --watch",
"deploy": "gh-pages -d .docz/dist",
"lint": "eslint 'src/**/*.{tsx,ts}' --fix",
"prettier": "prettier --write 'src/**/*.{tsx,ts}'",
"docz:dev": "docz dev",
"docz:build": "docz build --base /react-wordpress-hooks",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/cool-hooks/react-wordpress-hooks.git"
},
"keywords": [
"wordpress",
"hooks",
"react",
"library",
"rest",
"api"
],
"bugs": {
"url": "https://github.com/cool-hooks/react-wordpress-hooks/issues"
},
"homepage": "https://github.com/cool-hooks/react-wordpress-hooks#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/react": "^16.9.48",
"@typescript-eslint/parser": "^3.10.1",
"cz-conventional-changelog": "3.3.0",
"docz": "^2.3.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^4.0.2",
"semantic-release": "^17.1.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"npm run prettier",
"npm run lint"
]
}
}