-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "babel-plugin-react-suspense",
"description": "a way to wrap component with React.Suspense as `suspense` prop",
"author": "r17x <hi@rin.rocks>",
"homepage": "https://github.com/r17x/babel-plugin-react-suspense",
"repository": "https://github.com/r17x/babel-plugin-react-suspense",
"version": "1.0.8",
"keywords": [
"react",
"react-suspense",
"react-jsx",
"jsx",
"babel-plugin",
"babel"
],
"main": "src/index.js",
"files": [
"src/index.js"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint",
"format": "prettier --write --ignore-unknown",
"test": "jest"
},
"prettier": "@kodingdotninja/style-guide/prettier",
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.js": [
"eslint --fix",
"cross-env NODE_ENV=test jest --bail --findRelatedTests --passWithNoTests"
]
},
"jest": {
"testMatch": [
"**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!**/.*.js",
"!**/*.test.js",
"!**/node_modules/**"
]
},
"devDependencies": {
"@babel/core": "^7",
"@commitlint/cli": "^16",
"@commitlint/config-conventional": "^16",
"@commitlint/prompt": "^16",
"@semantic-release/changelog": "semantic-release/changelog",
"@semantic-release/git": "^10",
"@semrel-extra/npm": "^1",
"@kodingdotninja/style-guide": "^4",
"babel-plugin-tester": "^10",
"commitlint-config-squash-pr": "^1",
"cross-env": "^7",
"eslint": "^8",
"husky": "^8",
"jest": "^29",
"lint-staged": "^13",
"prettier": "^3",
"semantic-release": "^19"
}
}