-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "mvn-artifact-download",
"version": "6.1.1",
"description": "Download maven artifacts",
"main": "lib/artifact-download.js",
"typings": "lib/artifact-download.d.ts",
"scripts": {
"test": "mocha -r @babel/register -r @babel/polyfill --reporter=tap",
"build": "tsc --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laat/mvn-dl.git"
},
"keywords": [
"maven",
"artifact"
],
"author": "Sigurd Fosseng",
"license": "MIT",
"bugs": {
"url": "https://github.com/laat/mvn-dl/issues"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/laat/mvn-dl#readme",
"devDependencies": {
"@types/node": "^15.12.0",
"@types/node-fetch": "^2.5.10",
"chai": "*",
"chai-as-promised": "^7.1.1",
"mocha": "*",
"mock-fs": "^5.0.0",
"nock": "^13.1.0",
"typescript": "^4.3.2"
},
"dependencies": {
"mvn-artifact-filename": "^6.1.0",
"mvn-artifact-name-parser": "^6.1.0",
"mvn-artifact-url": "^6.1.0",
"node-fetch": "^2.6.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}