-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 919 Bytes
/
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
{
"name": "eslint-plugin-react-memo",
"version": "0.0.3",
"description": "",
"main": "dist/index.js",
"author": "Stefano J. Attardi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/steadicat/eslint-plugin-react-memo.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/eslint": "^7.2.7",
"@types/jest": "^26.0.22",
"@typescript-eslint/parser": "^4.19.0",
"@typescript-eslint/types": "^4.19.0",
"eslint": "^7.23.0",
"jest": "^25.0.0",
"rollup": "^2.43.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"scripts": {
"test": "jest",
"build": "rm -rf dist && rollup -c",
"prepublish:public": "npm run build && npm run bump-version",
"publish:public": "npm publish --access public"
},
"files": [
"dist"
]
}