-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1023 Bytes
/
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
{
"name": "checkstyle-filter-by-name",
"version": "1.0.0",
"description": "Filtering a checkstyle file",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"lint",
"design-system",
"css"
],
"scripts": {
"build": "tsc",
"check:eslint": "eslint \"src/**/*.ts\"",
"fix:eslint": "eslint \"src/**/*.ts\" --fix",
"check:types": "tsc --noEmit",
"test": "jest"
},
"bin": "dist/cli.js",
"files": [
"dist/"
],
"author": {
"name": "Moxio",
"email": "[email protected]",
"url": "https://www.moxio.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Moxio/checkstyle-filter-by-name.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"ts-node": "^10.2.1"
},
"dependencies": {
"@types/xmldom": "^0.1.31",
"@xmldom/xmldom": "^0.8.6",
"commander": "^8.2.0",
"typescript": "^4.4.3"
}
}