-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
75 lines (75 loc) · 2.07 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
{
"name": "eslint-plugin-lit",
"version": "0.0.0-dev",
"description": "lit-html support for ESLint",
"main": "lib/index.js",
"files": [
"lib/",
"!lib/test",
"docs",
"custom_types"
],
"scripts": {
"clean": "rimraf ./lib",
"lint": "eslint \"src/**/*.ts\"",
"prebuild": "npm run clean",
"build": "tsc",
"start": "nodemon --watch src --ext ts --exec \"npm run dev\"",
"dev": "npm run lint && npm run build && npm run test ",
"test": "nyc --reporter=html --reporter=text-summary --reporter=lcov mocha \"lib/test/**/*_test.js\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/43081j/eslint-plugin-lit.git"
},
"keywords": [
"eslint",
"eslintplugin",
"lit-html",
"lit-element"
],
"author": "James Garbutt <https://github.com/43081j>",
"license": "MIT",
"bugs": {
"url": "https://github.com/43081j/eslint-plugin-lit/issues"
},
"homepage": "https://github.com/43081j/eslint-plugin-lit#readme",
"engines": {
"node": ">= 12"
},
"dependencies": {
"parse5": "^6.0.1",
"parse5-htmlparser2-tree-adapter": "^6.0.1",
"requireindex": "^1.2.0"
},
"peerDependencies": {
"eslint": ">= 5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.5",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@types/chai": "^4.2.16",
"@types/eslint": "^8.4.6",
"@types/estree": "^1.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.8.8",
"@types/parse5": "^6.0.0",
"@types/parse5-htmlparser2-tree-adapter": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"chai": "^4.2.0",
"eslint": "^8.23.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-eslint-plugin": "^5.0.6",
"espree": "^9.0.0",
"mocha": "^10.0.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}