forked from 43081j/eslint-plugin-lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "eslint-plugin-lit",
"version": "1.2.2",
"description": "lit-html support for ESLint",
"main": "lib/index.js",
"files": [
"lib/!(test)",
"docs/",
"custom_types"
],
"scripts": {
"clean": "rimraf ./lib",
"lint": "eslint \"src/**/*.ts\"",
"prebuild": "npm run clean",
"build": "tsc",
"start": "npm run env npm_config_loglevel=silent -- watch \"npm run dev\" src",
"dev": "npm run lint && npm run build && npm run test ",
"test": "nyc --reporter=html --reporter=text-summary mocha \"lib/test/**/*_test.js\"",
"test:coverage": "nyc report --reporter=text-lcov | coveralls",
"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",
"dependencies": {
"parse5": "^6.0.1",
"parse5-htmlparser2-tree-adapter": "^6.0.1",
"requireindex": "^1.2.0"
},
"peerDependencies": {
"eslint": ">= 5"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/estree": "0.0.45",
"@types/node": "^14.0.26",
"@types/parse5": "^5.0.3",
"@types/parse5-htmlparser2-tree-adapter": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.7",
"watch": "^1.0.2"
}
}