-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "react-frec",
"version": "1.0.2",
"description": "This is a type library to simplify \"React.forwardRef\" and \"React.ForwardRefExoticComponent\"",
"keywords": [
"TypeScript",
"react",
"type",
"types",
"forwardRef",
"ForwardRefExoticComponent"
],
"main": "",
"types": "index",
"scripts": {
"build": "tsc -P .",
"format": "npm run format:write",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"",
"versionup:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major",
"versionup:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor",
"versionup:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misuken-now/react-frec.git"
},
"author": "misuken",
"license": "MIT",
"bugs": {
"url": "https://github.com/misuken-now/react-frec/issues"
},
"homepage": "https://github.com/misuken-now/react-frec#readme",
"devDependencies": {
"@types/react": ">=16.0.0",
"generate-changelog": "^1.8.0",
"prettier": ">=2.0.0",
"typescript": ">=4.0.0"
}
}