This repository was archived by the owner on Apr 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.98 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
81
82
83
84
85
86
87
88
{
"name": "react-is-kagawa",
"version": "1.0.0",
"main": "dist/index.cjs.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"package.json",
"dist"
],
"repository": "git@github.com:hrdtbs/react-is-kagawa.git",
"author": "hrdtbs <harada.tsubasa.0422@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-loader": "^8.1.0",
"conventional-changelog-cli": "^2.0.31",
"core-js": "3.6.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-typescript2": "^0.26.0",
"textlint": "^11.6.3",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-preset-ja-technical-writing": "^3.1.3",
"textlint-rule-preset-jtf-style": "^2.3.4",
"textlint-rule-prh": "^5.3.0",
"textlint-rule-spellcheck-tech-word": "^5.0.0",
"typescript": "^3.8.3"
},
"scripts": {
"build": "rollup -c",
"update": "yarn upgrade-interactive --latest",
"lint:ts": "eslint ./src/*.ts --cache",
"lint:json": "prettier '*.json'",
"lint:text": "textlint './*.md'",
"lint:fix:ts": "yarn lint:ts --fix",
"lint:fix:json": "yarn lint:json --write",
"lint:fix:text": "yarn lint:text --fix",
"lint": "run-p -l -n -c --aggregate-output lint:*",
"lint:fix": "run-p -l -n -c --aggregate-output lint:fix:*",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "yarn build && yarn version && npm publish && git push && git push --tags"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix:ts",
"git add"
],
"*.{json}": [
"yarn lint:fix:json",
"git add"
],
"*.{md}": [
"yarn lint:fix:text",
"git add"
]
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}