This repository was archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.3 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.3 KB
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
{
"name": "@tokenstreet/eslint-plugin",
"version": "0.3.2",
"description": "tokenstreet React Native ESLint plugin",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Daniel Reichhart <daniel@tokenstreet.com>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./lib/index.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"typescript": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"prettier": "prettier --write . --ignore-path ./.prettierignore",
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.(js|jsx|ts|tsx)": "eslint --fix"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.1",
"@release-it/conventional-changelog": "^5.1.1",
"@types/eslint": "^8.37.0",
"@types/estree": "^1.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"commitlint": "^17.6.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mocha": "^10.2.0",
"prettier": "2.8.7",
"release-it": "^15.10.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"license": "MIT"
}