-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "eslint-plugin-rs",
"version": "1.0.4",
"main": "lib/index.js",
"description": "Contains eslint rules for tests and decorators",
"license": "MIT",
"repository": "https://github.com/skyRoma/eslint-plugin-rs",
"homepage": "https://github.com/skyRoma/eslint-plugin-rs",
"keywords": [
"eslint",
"lint",
"eslintplugin",
"eslint-plugin",
"eslint-expect",
"expect",
"eslint-decorators",
"decorators"
],
"files": [
"lib"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"lint": "eslint test-sandbox.ts",
"check-libs-updates": "ncu",
"libs:update:patch": "ncu -u --target patch && npm i",
"libs:update:minor": "ncu -u --target minor && npm i",
"libs:update:major": "ncu -u && npm i"
},
"devDependencies": {
"@typescript-eslint/experimental-utils": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"npm-check-updates": "^16.7.13",
"rimraf": "^4.4.0",
"typescript": "^5.0.2"
}
}