-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.88 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
110
{
"name": "aws-serverless-dataflow",
"description": "Visualisation of AWS serverless (Lambda, API Gateway, SNS, SQS, etc.) dataflow",
"version": "1.4.0",
"author": "James Hu",
"bin": {
"aws-serverless-dataflow": "./bin/aws-serverless-dataflow.js"
},
"bugs": "https://github.com/james-hu/aws-serverless-dataflow/issues",
"dependencies": {
"@handy-common-utils/aws-utils": "^2.0.4",
"@handy-common-utils/oclif-utils": "^1.1.3",
"@handy-common-utils/promise-utils": "^1.2.6",
"@oclif/core": "^1.9.0",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-plugins": "^2.1.0",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"aws-sdk": "^2.1148.0",
"fs-extra": "^9.0.1",
"js-string-escape": "^1.0.1",
"luxon": "^2.1.1",
"matcher": "^3.0.0",
"ncp": "^2.0.0",
"open": "^7.2.1",
"really-simple-http-server": "^1.2.0",
"tslib": "^1.13.0",
"vis-network": "^9.1.2"
},
"devDependencies": {
"@handy-common-utils/dev-dependencies-mocha": "^1.3.0",
"@oclif/test": "^2.1.0",
"@types/fs-extra": "^8.1.2",
"@types/js-string-escape": "^1.0.0",
"@types/luxon": "^2.0.7",
"@types/matcher": "^2.0.0",
"@types/ncp": "^2.0.5",
"browserify": "^17.0.0",
"oclif": "^3.0.1",
"pkg": "^5.8.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/site"
],
"homepage": "https://github.com/james-hu/aws-serverless-dataflow",
"keywords": [
"aws",
"api",
"gateway",
"apigateway",
"lambda",
"serverless",
"sqs",
"sns",
"topology",
"dataflow",
"diagram",
"visualisation",
"visualization"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"pkg": {
"scripts": [
"lib/**/*.js",
"bin/aws-serverless-dataflow"
],
"assets": [
"site/**/*"
],
"outputPath": "pkg",
"targets": [
"node16-macos-x64",
"node16-macos-arm64",
"node16-linux-x64",
"node16-linux-arm64",
"node16-win-x64"
]
},
"oclif": {
"bin": "aws-serverless-dataflow",
"plugins": [
"@oclif/plugin-plugins",
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"registry": "https://registry.npm.taobao.org/",
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
}
},
"repository": "james-hu/aws-serverless-dataflow",
"scripts": {
"pretest": "eslint . --ext .ts",
"test": "nyc mocha",
"prepare": "shx rm -rf dist lib && tsc && browserify lib/browser-utils.js -o site/js/browser-utils.js",
"pkg": "npm run prepare && pkg --compress GZip .",
"preversion": "./bin/run --update-readme.md && git add README.md"
},
"types": "lib/index.d.ts",
"volta": {
"node": "16.19.0",
"npm": "8.19.3"
}
}