-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 2.61 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@jolie/jpm",
"version": "3.0.5",
"description": "The Jolie package manager",
"contributors": [
{
"name": "Luis Antonio Canettoli Ordoñez",
"email": "[email protected]"
},
{
"name": "Fabrizio Montesi",
"email": "[email protected]",
"url": "https://www.fabriziomontesi.com"
},
{
"name": "Narongrit Unwerawattana",
"email": "[email protected]"
}
],
"bin": {
"jpm": "./bin/run"
},
"repository": {
"type": "git",
"url": "git://github.com/jolie/jpm.git"
},
"keywords": [
"jolie",
"microservices"
],
"homepage": "https://github.com/jolie/jpm",
"license": "MIT",
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^4",
"chalk": "^4.0.0",
"debug": "^4.3.7",
"decompress": "^4.2.1",
"glob": "11.0.0",
"nock": "^13.5.5",
"node-fetch": "^2",
"pom-parser": "1.2.0",
"semver": "^7.6.3",
"shelljs": "^0.8.5",
"xml": "^1.0.1",
"yarn": "^1.22.22"
},
"overrides": {
"xml2js": "^0.6.2",
"glob": "11.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@oclif/test": "^4",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4",
"@types/debug": "^4.1.12",
"@types/decompress": "^4.2.7",
"@types/mocha": "^10.0.9",
"@types/node": "20.17.0",
"@types/node-fetch": "^2.6.11",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"@types/xml": "^1.0.11",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"chai": "^4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"mocha": "^10",
"oclif": "^4.15.20",
"shx": "^0.3.4",
"tsx": "^4.19.2",
"typescript": "5.6.3"
},
"oclif": {
"bin": "jpm",
"dirname": "jpm",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"build": "shx rm -rf dist && tsc",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"postpack": "shx rm -f oclif.manifest.json",
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/kicito/jpm/issues",
"types": "dist/index.d.ts",
"packageManager": "[email protected]"
}