-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1003 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1003 Bytes
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
{
"name": "babel-plugin-check-prop-types",
"version": "1.1.0",
"description": "Babel plugin to typecheck React components with legacy PropTypes compatible with React 19",
"repository": {
"type": "git",
"url": "git+https://github.com/NikolayFrantsev/babel-plugin-check-prop-types.git"
},
"author": "Nikolay Frantsev <nikolay@frantsev.me>",
"license": "MIT",
"type": "module",
"main": "index.cjs",
"scripts": {
"prepare": "yarn eslint && yarn test",
"test": "yarn jest --coverage --coverageThreshold='{\"global\":{\"statements\":100}}'",
"eslint": "eslint --ignore-pattern=coverage/",
"jest": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' jest"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/plugin-syntax-decorators": "7.25.9",
"@jest/globals": "29.7.0",
"@stylistic/eslint-plugin": "4.2.0",
"eslint": "9.22.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-unicorn": "57.0.0",
"jest": "29.7.0"
}
}