-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.29 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
{
"name": "alps-unified",
"version": "1.0.0",
"description": "ALPS translator, API and CLI",
"main": "dist/unified.js",
"bin": {
"unified": "bin/unified-cli.js"
},
"scripts": {
"build": "webpack --mode production",
"prepublishOnly": "npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mamund/alps-unified.git"
},
"keywords": [
"mamund",
"ALPS",
"gRPC",
"REST",
"SDL",
"GraphQL",
"OpenAPI",
"AsyncAPI",
"WSDL"
],
"author": "Mike Amundsen (@mamund)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mamund/alps-unified/issues"
},
"homepage": "https://github.com/mamund/alps-unified#readme",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"decamelize": "^6.0.0",
"escape-string-regexp": "^5.0.0",
"esm": "^3.2.25",
"find-up": "^7.0.0",
"jstoxml": "^5.0.2",
"set-blocking": "^2.0.0",
"term-size": "^4.0.0",
"y18n": ">=4.0.1",
"yamljs": "^0.3.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"mocha": "^11.0.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
}
}