-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 813 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 813 Bytes
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
{
"name": "@ibm/ibmi-ci",
"version": "0.2.7",
"description": "IBM i CLI tool",
"bin": {
"ici": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "vitest",
"webpack:dev": "webpack --mode none --config ./webpack.config.js",
"webpack": "webpack --mode production --config ./webpack.config.js",
"local": "npm run webpack:dev && npm i -g",
"deploy": "npm run webpack && npm i && npm publish --access public"
},
"keywords": [
"ibmi"
],
"author": "IBM",
"license": "Apache 2",
"devDependencies": {
"ts-loader": "^9.4.4",
"typescript": "^4.8.4",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"node-ssh": "^13.1.0",
"octokit": "^3.1.2",
"yaml": "^2.3.4"
}
}