-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "marklint",
"version": "0.7.0",
"description": "🗳 HTML/Markup (Vue and Angular template) linter",
"main": "src/index.js",
"tags": [
"html",
"markup",
"lint",
"linter",
"template",
"vue",
"angular"
],
"bin": {
"marklint": "bin/marklint.js"
},
"scripts": {
"start": "bin/marklint.js",
"lint": "eslint .",
"test": "jest",
"test:ci": "npm run test -- --ci",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"types": "tsc --p jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcisbee/marklint.git"
},
"author": "Marcis Bergmanis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marcisbee/marklint/issues"
},
"homepage": "https://github.com/Marcisbee/marklint#readme",
"devDependencies": {
"@types/jest": "^26.0.16",
"@types/node": "^20.5.0",
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"typescript": "^4.1.2"
},
"files": [
"bin",
"schemas",
"src",
".config/marklint.json",
"theme.js"
]
}