-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 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
41
42
43
44
45
46
47
48
49
50
{
"name": "@arthurgeron/eslint-plugin-react-usememo",
"version": "2.4.4",
"description": "",
"main": "dist/index.js",
"author": "Stefano J. Attardi <[email protected]> & Arthur Geron <[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/arthurgeron/eslint-plugin-react-usememo.git"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@jest/types": "28.1.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.3",
"@types/eslint": "8.4.5",
"@types/jest": "28.1.5",
"@types/uuid": "9.0.6",
"@typescript-eslint/parser": "5.30.6",
"@typescript-eslint/types": "5.30.6",
"eslint": "8.19.0",
"husky": "8.0.1",
"jest": "28.1.3",
"rollup": "2.76.0",
"ts-jest": "28.0.6",
"ts-prune": "0.10.3",
"typescript": "4.7.4"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "rm -rf dist && rollup -c",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"publish:public": "npm publish --access public",
"deadCode": "./node_modules/.bin/ts-prune --error --ignore"
},
"files": [
"dist"
],
"dependencies": {
"minimatch": "9.0.3",
"uuid": "9.0.1"
},
"overrides": {
"braces": ">=3.0.3"
}
}