forked from whelk-io/maven-settings-xml-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "maven-settings-xml-action",
"version": "0.0.18",
"description": "Update maven ~/.m2/settings.xml",
"main": "src/index.js",
"directories": {
"test": "test/js"
},
"dependencies": {
"@actions/core": "^1.3.0",
"@actions/github": "^5.0.0",
"fs": "0.0.1-security",
"os": "^0.1.1",
"path": "^0.12.7",
"xml-formatter": "^2.4.0",
"@xmldom/xmldom": "^0.8.3"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^7.3.0",
"eslint-plugin-mocha": "^7.0.1",
"mocha": "^10.0.0",
"mocha-eslint": "^6.0.0"
},
"scripts": {
"lint": "eslint ./src/*.js",
"test": "mocha test/js",
"build_index": "ncc build src/index.js -o dist ",
"copy_templates": "rm -rf dist/template && mkdir dist/template && cp -a template/. dist/template/",
"build": "npm run build_index && npm run copy_templates"
},
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "https://github.com/whelk-io/maven-settings-xml-action.git"
},
"author": {
"name": "Zack Teater",
"url": "http://whelk.io"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/whelk-io/maven-settings-xml-action/issues"
},
"homepage": "https://github.com/whelk-io/maven-settings-xml-action#readme",
"contributors": [
{
"name": "Jason Edstrom",
"email": "jason@instacode.io"
}
]
}