-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "eslint-plugin-wc",
"version": "0.0.0-dev",
"description": "ESLint plugin for Web Components",
"main": "lib/index.js",
"files": [
"lib/",
"!lib/test",
"docs/"
],
"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-wc.git"
},
"keywords": [
"eslint",
"eslintplugin",
"webcomponents",
"wc"
],
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/43081j/eslint-plugin-wc/issues"
},
"homepage": "https://github.com/43081j/eslint-plugin-wc#readme",
"dependencies": {
"is-valid-element-name": "^1.0.0",
"js-levenshtein-esm": "^1.2.0"
},
"peerDependencies": {
"eslint": ">=8.40.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/eslint": "^8.44.2",
"@types/estree": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^8.47.0",
"eslint-config-google": "^0.14.0",
"espree": "^9.4.1",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
}
}