forked from stepci/stepci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "stepci",
"version": "2.7.2",
"description": "API Testing and Monitoring made simple",
"main": "index.js",
"bin": {
"stepci": "dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@stepci/plugin-openapi": "^0.3.5",
"@stepci/runner": "^1.11.6",
"chalk": "^4.1.2",
"ci-info": "^3.5.0",
"cli-highlight": "^2.1.11",
"conf": "^10.2.0",
"exit": "^0.1.2",
"is-docker": "^2.2.1",
"posthog-node": "^2.2.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/exit": "^0.1.31",
"@types/node": "^20.8.10",
"@types/yargs": "^17.0.13",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"typescript-json-schema": "^0.62.0",
"vitepress": "^1.0.0-rc.24",
"vue": "^3.2.41"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"postbuild": "typescript-json-schema --required --esModuleInterop node_modules/@stepci/runner/dist/index.d.ts Workflow -o schema.json",
"build:watch": "tsc -w -p tsconfig.json",
"init": "ts-node ./src/index.ts init",
"test": "ts-node ./src/index.ts run -v",
"test:generate": "ts-node ./src/index.ts generate",
"test:loadtest": "ts-node ./src/index.ts run --loadtest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stepci/stepci.git"
},
"keywords": [
"http",
"testing",
"api"
],
"author": "Mish Ushakov <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/stepci/stepci/issues"
},
"homepage": "https://stepci.com"
}