-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "@dalife/eslint-plugin",
"version": "0.0.1",
"description": "ESLint rules used in DALI FE Team",
"license": "ISC",
"sideEffects": false,
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc -b ./tsconfig.cjs.json",
"prepublishOnly": "npm run build && npm run test",
"start": "tsc -b --watch",
"test": "jest"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"rules": {
"arrow-body-style": "off"
},
"root": true
},
"eslintIgnore": [
"lib/",
"jest.config.ts",
"node_modules/"
],
"dependencies": {
"@typescript-eslint/experimental-utils": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"@typescript-eslint/types": "5.9.1",
"@typescript-eslint/typescript-estree": "5.9.1",
"eslint": "8.6.0",
"minimatch": "3.0.4",
"tslib": "2.3.1"
},
"devDependencies": {
"@types/eslint": "7.29.0",
"@types/estree": "^0.0.45",
"@types/jest": "26.0.24",
"@types/minimatch": "3.0.5",
"@types/node": "14.18.5",
"jest": "26.6.3",
"jest-watch-typeahead": "0.6.5",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"ts-node": "10.4.0",
"typescript": "4.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}