-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 948 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
35
36
37
38
39
40
{
"name": "@godaddy/eslint-plugin-react-intl",
"version": "1.3.0",
"description": "Eslint utils to add checks for react-intl usages.",
"main": "lib",
"repository": {
"type": "git",
"url": "[email protected]:godaddy/eslint-plugin-react-intl.git"
},
"author": "GoDaddy Operating Company, LLC",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"react",
"react-intl"
],
"license": "MIT",
"scripts": {
"lint": "eslint lib",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"peerDependencies": {
"eslint": ">=4.0.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-godaddy": "^6.0.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-mocha": "^10.0.4",
"jest": "^29.0.3"
}
}