-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-yoastseo",
"version": "1.0.0",
"description": "Helpers to use Yoast SEO with React",
"main": "dist/react-yoastseo.umd.js",
"types": "dist/types/index.d.ts",
"module": "dist/react-yoastseo.esm.js",
"jsdelivr": "dist/react-yoastseo.iife.js",
"unpkg": "dist/react-yoastseo.iife.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:lmarqs/react-yoastseo.git"
},
"files": [
"dist/**/*",
"src/**/*"
],
"homepage": "https://lmarqs.github.io/react-yoastseo",
"author": {
"name": "Lucas Marques de Paula<[email protected]>",
"url": "https://github.com/lmarqs"
},
"bugs": "https://github.com/lmarqs/react-yoastseo/issues",
"keywords": [
"react",
"yoast",
"seo",
"yoastseo"
],
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "npm-run-all build:*",
"build:types": "tsc --project tsconfig-types.json",
"build:main": "rollup --config rollup.config.js",
"coverage": "npm run test -- --collect-coverage",
"lint": "npm-run-all lint:*",
"lint:commit": "commitlint --from master",
"lint:js": "eslint --ext .js,.jsx,.json,.ts,.tsx .",
"lint:markdown": "markdownlint '**/*.md' --ignore '**/node_modules/**/*' --ignore CHANGELOG.md",
"lint:yaml": "yamllint '**/*.{yaml,yml}' --ignore='**/node_modules/**/*'",
"release": "npx semantic-release",
"test": "jest",
"storybook": "start-storybook -s ./.storybook/assets 9001 -p 6006 ",
"build-storybook": "build-storybook"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.8",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/release-notes-generator": "^9.0.1",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@testing-library/react-hooks": "^3.7.0",
"@types/node": "^15.0.1",
"@types/react": "^17.0.0",
"@types/yoastseo": "file:@types/yoastseo",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"eslint": "^7.7.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-json-format": "^2.0.1",
"jest": "^26.6.3",
"jest-cucumber": "^3.0.0",
"markdownlint-cli": "^0.27.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.1",
"rollup": "^2.26.3",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.1.1",
"serve": "^11.3.2",
"shx": "^0.3.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"yaml-lint": "^1.2.4",
"yoastseo": "^1.86.0"
},
"peerDependencies": {
"react": "^17.x",
"yoastseo": "^1.x"
}
}