-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.56 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
111
112
113
{
"author": "Timothy Quilling <[email protected]>",
"dependencies": {
"@inquirer/confirm": "^2.0.1",
"@inquirer/core": "^2.1.0",
"@inquirer/input": "^1.0.0",
"@inquirer/rawlist": "^1.0.0",
"@inquirer/select": "^1.0.0",
"@types/inquirer-autocomplete-prompt": "^3.0.0",
"ansi-escapes": "^6.0.0",
"chalk": "^5.0.1",
"chalk-animation": "^2.0.3",
"figures": "^5.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^9.1.4",
"inquirer-autocomplete-prompt": "^3.0.0",
"odbc": "^2.4.6",
"ora": "^6.1.2",
"reflect-metadata": "^0.1.13",
"type-fest": "^3.0.0"
},
"description": "Menus for interacting with IBMi AS400 using node-odbc.",
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@sequelize/core": "^7.0.0-alpha.18",
"@teqed/sequelize-auto": "^0.9.2",
"@tsconfig/node16": "^16.1.0",
"@types/chai": "^4.3.3",
"@types/chalk-animation": "^1.6.1",
"@types/inquirer": "^9.0.2",
"@types/mocha": "^10.0.0",
"@types/node": "^20.1.3",
"@types/ora": "^3.2.0",
"@types/validator": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"airbnb": "^0.0.2",
"aws-sdk": "^2.1212.0",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-canonical": "^41.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"mocha": "^10.0.0",
"mocha-reporter-badge": "^0.1.0",
"mock-aws-s3": "^4.0.2",
"nock": "^13.2.9",
"prettier": "3.0.0",
"rollup-plugin-visualizer": "^5.8.1",
"sequelize-cli": "^6.5.1",
"sequelize-typescript": "^2.1.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"tsx": "^3.9.0",
"typescript": "^5.0.0-dev.20221102",
"vite": "^4.0.1",
"vite-plugin-node": "^3.0.2",
"vite-plugin-progress": "^0.0.7",
"vitest": "^0.33.0",
"xo": "^0.53.0"
},
"keywords": [
"ibmi",
"as400",
"iseries",
"odbc"
],
"license": "MIT",
"main": "build/main.js",
"name": "@teqed/interact-ibmi",
"scripts": {
"vite:dev": "vite",
"vite:preview": "vite preview",
"build": "tsc",
"build:vite": "tsc && vite build",
"build:run": "tsc && node .",
"rebuild": "tsc && vite build && npm run test:mocha:badge && npm run test && node .",
"build:publish": "npm run build && npm version patch && npm publish --publish=public",
"build:publish:dev": "npm run build && npm publish --publish=public --tag=dev",
"lint": "eslint --format=pretty . --ext .ts,.mts,.tsx",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:mocha": "mocha test/mocha/*.test.js",
"test:mocha:badge": "cross-env MOCHA_BADGE_SUBJECT=tests MOCHA_BADGE_STYLE=plastic ./node_modules/.bin/mocha test/mocha/*.test.js --reporter mocha-reporter-badge > .github/assets/build.svg"
},
"type": "module",
"version": "1.0.50",
"engines": {
"node": ">=16.0.0"
},
"bin": "./build/main.js",
"jest": {
"moduleNameMapper": {
"#(.*)": "<rootDir>/node_modules/$1"
}
},
"files": [
"/build"
]
}