This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "@public-js/eslint-plugin",
"version": "0.0.1",
"description": "Helpful ESLint rules especially for those using TypeScript",
"scripts": {
"build": "npm run clean && tsc -b tsconfig.build.json",
"clean": "rimraf dist",
"test:ci": "jest --ci --maxWorkers=3 --coverage --json --outputFile=jest.results.json",
"test": "jest",
"ts:watch": "tsc -w --preserveWatchOutput",
"npm-pub:test": "npm run build && npm publish --access public --dry-run",
"npm-pub": "npm run build && npm publish --access public"
},
"main": "dist/index.js",
"dependencies": {
"eslint-plugin-react-native-globals": ">=0.1.1",
"tsutils": "^3.17.1"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/marked": "^1.1.0",
"@types/node": "^14.6.0",
"@types/prettier": "*",
"@typescript-eslint/experimental-utils": "^4.8.2",
"chalk": "^4.0.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.1.4",
"marked": "^1.0.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.0",
"typescript": "~4.1.2"
},
"peerDependencies": {
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Public JS <[email protected]> (https://github.com/public-js/public-js)",
"bugs": {
"url": "https://github.com/public-js/eslint-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/public-js/eslint-plugin.git"
},
"homepage": "https://github.com/public-js/eslint-plugin",
"engines": {
"node": ">=10.3.0"
}
}