-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "eslint-plugin-react-intl-universal",
"version": "1.0.4",
"description": "ESLint plugin for React Intl Universal",
"main": "lib/index.js",
"private": false,
"scripts": {
"prepare": "husky install",
"clean": "rimraf lib",
"prebuild": "rimraf node_modules/@types/eslint/node_modules/@types/estree",
"build": "tsc",
"prettier": "prettier \"*.{js,json,yml,yaml,md}\" \"src/**/*\"",
"format": "yarn prettier --write",
"lint": "eslint --color --ext .ts \"src/**/*.+(ts)\"",
"lint:fix": "eslint --color --ext .ts \"src/**/*.+(ts)\" --fix",
"type-check": "tsc --pretty --noEmit --skipLibCheck",
"test:coverage": "jest --coverage",
"test": "jest --coverage --watchAll",
"predeploy": "npm run lint && npm run lint:fix && npm run type-check && npm run test:coverage",
"deploy": "npm run clean && npm run build && npm publish --access=public"
},
"files": [
"README.md",
"package.json",
"lib"
],
"keywords": [
"eslint",
"typescript",
"react-intl",
"intl",
"i18n",
"internationalization",
"react-intl-universal"
],
"repository": "https://github.com/victorsoares96/eslint-plugin-react-intl-universal",
"author": "Victor Soares <[email protected]> (https://github.com/victorsoares96)",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorsoares96/eslint-plugin-react-intl-universal/issues"
},
"homepage": "https://github.com/victorsoares96/eslint-plugin-react-intl-universal#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/eslint": "8.4.2",
"@types/estree": "0.0.51",
"@types/jest": "^28.1.2",
"@types/lodash": "^4.14.182",
"@types/node": "16.11.39",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "8.17.0",
"husky": "8.0.1",
"jest": "28.1.0",
"lint-staged": "^13.0.2",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "28.0.3",
"ts-node": "^10.8.1",
"typescript": "4.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run lint:fix",
"npm run type-check"
]
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}