This repository has been archived by the owner on Mar 24, 2024. It is now read-only.
forked from lordgiotto/react-metatags-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
{
"name": "react-metatags-hook",
"version": "1.3.2",
"description": "React Hook to manage html meta tags",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"author": "Lorenzo Zottar <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"hook",
"meta",
"tag",
"dom"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lordgiotto/react-metatags-hook.git"
},
"bugs": {
"url": "https://github.com/lordgiotto/react-metatags-hook/issues"
},
"homepage": "https://github.com/lordgiotto/react-metatags-hook/",
"scripts": {
"watch": "rollup -c -w",
"build": "rollup -c --environment BUILD:production",
"check:all": "concurrently --kill-others-on-fail yarn:check:ts yarn:check:lint",
"check:ts": "tsc --noEmit",
"check:lint": "eslint ./src",
"check:lint:fix": "eslint ./src --fix",
"prepublishOnly": "yarn check:all && yarn build",
"test": "jest",
"test:ui": "majestic"
},
"pre-commit": [
"check:all"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"concurrently": "^5.2.0",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.0.1",
"majestic": "^1.7.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^16.13.1",
"rollup": "^2.8.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}