-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "simplifyqa-pipeline-executor",
"version": "0.0.1",
"description": "An npm package that implements the logic for SimplifyQA Pipeline Executor.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"homepage": "https://docs.simplifyqa.app/docs",
"repository": {
"url": "https://github.com/bernardbdas/simplifyqa-pipeline-executor-npm"
},
"scripts": {
"build": "concurrently \"rimraf dist\" \"tsup\"",
"prestart": "npm run build",
"start": "node dist/index.js",
"dev": "tsup & nodemon dist/index.js"
},
"keywords": [
"simplifyqa",
"pipeline",
"executor",
"qa",
"software testing",
"automation",
"api",
"sdk"
],
"author": "bernardbdas",
"license": "MIT",
"devDependencies": {
"axios": "^1.6.8",
"concurrently": "^8.2.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"typescript": "^5.4.5"
}
}