-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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": "maven-toolchains-xml-action",
"version": "2.0.0",
"description": "Update maven ~/.m2/toolchains.xml",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"xml-formatter": "^2.4.1",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-mocha": "^9.0.0",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"copy_templates": "rm -rf dist/template && mkdir dist/template && cp -a template/. dist/template/",
"build": "tsc -p tsconfig.prod.json && npm run copy_templates",
"package": "npm run build && ncc build --source-map --license LICENSE",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/cactuslab/maven-toolchains-xml-action.git"
},
"author": {
"name": "Karl von Randow",
"url": "https://cactuslab.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cactuslab/maven-toolchains-xml-action/issues"
},
"homepage": "https://github.com/cactuslab/maven-toolchains-xml-action#readme"
}