-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.65 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@anyone-developer/anyone-validate-xml",
"version": "0.9.2",
"description": "This action helps you to validate XML syntax in a specified directory. And write back with formatted content. read file recursively with specified file extensions.",
"main": "index.ts",
"types": "index.d.ts",
"files": [
"src/avx.ts",
"src/types/args.d.ts",
"src/types/avx-item.d.ts",
"index.ts",
"index.d.ts",
"bin/cli-wrapper.ts",
"bin/cli.js",
"bin/cli.ts"
],
"scripts": {
"test": "ts-node test.ts",
"xo": "xo",
"xo-fix": "xo --fix",
"build": "npm run build-index && npm run build-action && npm run build-cli && npm run build-win && npm run build-macos && npm run build-linux",
"build-index": "ncc build index.ts -o dist/index -m -s --license LICENSE",
"build-action": "ncc build action.ts -o dist/action -m -s --license LICENSE",
"build-cli": "ncc build bin/cli.js -o dist/cli -m -s --license LICENSE",
"build-win": "pkg dist/cli/index.js -t node12-win-x64 -o build/release/anyone-validate-xml-win",
"build-macos": "pkg dist/cli/index.js -t node12-macos-x64 -o build/release/anyone-validate-xml-macos",
"build-linux": "pkg dist/cli/index.js -t node12-linux-x64 -o build/release/anyone-validate-xml-linux"
},
"bin": {
"anyone-validate-xml": "./bin/cli.js",
"avx": "./bin/cli.js"
},
"repository": "git://github.com/anyone-developer/anyone-validate-xml.git",
"keywords": [
"cli",
"anyone-validate-xml",
"anyone-developer",
"xml",
"xml-formatter",
"formatter",
"validate",
"validation"
],
"author": "Zhang Nan ([email protected])",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/anyone-developer/anyone-validate-xml/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"homepage": "https://github.com/anyone-developer/anyone-validate-xml#readme",
"dependencies": {
"args": "^5.0.1",
"beautify": "0.0.8",
"chalk": "^4.1.0",
"fast-xml-parser": "^3.17.4",
"rrdir": "^8.2.0"
},
"optionalDependencies": {
"@actions/core": "^1.2.6"
},
"directories": {
"doc": "docs"
},
"devDependencies": {
"@types/args": "^3.0.0",
"@types/beautify": "0.0.0",
"@types/rrdir": "^8.2.1",
"@vercel/ncc": "^0.25.1",
"pkg": "^4.4.9",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"xo": "^0.53.1"
},
"xo": {
"rules": {
"prefer-promise-reject-errors": 0,
"prefer-optional-chain": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"unicorn/no-reduce": 0,
"unicorn/import-index": 0,
"import/no-unassigned-import": 0
}
}
}