This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.69 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
{
"name": "pomxml-dep-update",
"version": "1.0.4",
"description": "If there is a newer version of the dependency in pom.xml, rewrite it to the latest version.",
"main": "dist/index.js",
"repository": "git@github.com:book000/pomxml-dep-update.git",
"author": "Tomachi",
"private": true,
"scripts": {
"build": "ts-node ./src/main.ts",
"dev": "ts-node-dev ./src/main.ts",
"start": "node ./dist/index.js",
"compile": "ncc build src/main.ts -o dist",
"compile:test": "tsc -p . --noEmit",
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . --ext ts,tsx",
"lint:tsc": "tsc",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint . --ext ts,tsx --fix",
"fix:prettier": "prettier --write src"
},
"devDependencies": {
"@actions/core": "1.6.0",
"@types/config": "0.0.40",
"@types/libmime": "5.0.0",
"@types/node": "16.11.17",
"@types/quoted-printable": "1.0.0",
"@types/utf8": "3.0.1",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"@vercel/ncc": "0.33.1",
"axios": "0.24.0",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"fast-xml-parser": "4.0.0-beta.8",
"libmime": "5.0.0",
"prettier": "2.5.1",
"quoted-printable": "1.0.1",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"ts-node-dev": "1.1.8",
"typescript": "4.5.4",
"webpack-node-externals": "3.0.0",
"xml-formatter": "2.6.0",
"yarn-run-all": "3.1.1"
}
}