-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "@aikidosec/ci-api-client",
"version": "0.0.0",
"description": "CLI api client to easily integrate the Aikido public CI API into custom deploy scripts",
"license": "MIT",
"author": "Bert Devriese <[email protected]>",
"private": false,
"type": "module",
"main": "lib/index.js",
"bin": {
"aikido-api-client": "lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AikidoSec/ci-api-client.git"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --esm --exec 'ts-node' src/index.ts",
"build": "tsc -p .",
"local": "yarn build && yarn global add file:$PWD; aikido-api-client",
"local-rm": "yarn global remove aikido-api-client",
"format": "prettier --write 'src/**/*.ts'",
"//": {
"refresh": "rm -rf ./node_modules ./yarn.lock && yarn"
}
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"configstore": "^6.0.0",
"dotenv": "^16.3.1",
"ora": "^6.3.1"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/configstore": "^6.0.0",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.3.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"keywords": [
"aikido",
"security",
"cli"
]
}