-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.27 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.27 KB
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
{
"name": "@khalidx/resource-x",
"version": "1.4.1",
"description": "Resource and domain modeling for quick APIs, CMSs, and applications.",
"author": "Khalid Zoabi <kzoabi@outlook.com>",
"license": "MIT",
"keywords": [
"api",
"markdown",
"json-schema",
"swagger",
"aws-api-gateway"
],
"homepage": "https://khalidx.github.io/resource-x/",
"repository": {
"type": "git",
"url": "https://github.com/khalidx/resource-x.git"
},
"main": "dist/index.js",
"bin": {
"rx": "dist/cli.js"
},
"files": [
"sample.md",
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"dev": "ts-node src/cli.ts",
"clean": "rimraf dist/ exec/",
"build": "npm run clean && tsc",
"test": "npm run build && ava --verbose",
"bundle-windows": "nexe --resource \"./sample.md\" --input dist/cli.js --name exec/rx-windows --target windows-10.16.0",
"bundle-macos": "nexe --resource \"./sample.md\" --input dist/cli.js --name exec/rx-macos --target macos-10.16.0",
"bundle-linux": "nexe --resource \"./sample.md\" --input dist/cli.js --name exec/rx-linux --target linux-10.16.0",
"bundle": "npm run build && npm run bundle-windows && npm run bundle-macos && npm run bundle-linux"
},
"dependencies": {
"aws-sdk": "^2.488.0",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"figlet": "^1.2.3",
"fs-extra": "^8.1.0",
"inquirer": "^6.4.1",
"js-yaml": "^3.13.1",
"json-schema-faker": "^0.5.0-rc17",
"lodash": "^4.17.11",
"marked": "^0.7.0",
"open": "^6.4.0",
"pluralize": "^8.0.0",
"proxy-agent": "^3.1.1",
"swagger-parser": "^8.0.0",
"swagger-ui-express": "^4.0.7",
"swagger2-to-postmanv2": "^1.0.1"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^8.0.0",
"@types/inquirer": "^6.0.3",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.135",
"@types/marked": "^0.6.5",
"@types/node": "^12.0.12",
"@types/pluralize": "0.0.29",
"@types/swagger-ui-express": "^3.0.1",
"@types/yamljs": "^0.2.30",
"ava": "^2.1.0",
"nexe": "^3.3.2",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}