-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "flower",
"version": "1.0.0",
"description": "A flow-driven testing framework for quickly testing REST APIs.",
"main": "dist/flowerRunner.js",
"scripts": {
"build": "tsc",
"test": "ts-node flowerRunner.ts",
"test-parallel": "ts-node flowerRunner.ts -- --parallel",
"start": "node dist/flowerRunner.js",
"lint": "eslint '**/*.ts' --fix"
},
"keywords": [
"testing",
"framework",
"flow-driven",
"typescript"
],
"author": "jersobh",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"chai": "^4.3.4",
"chalk": "^5.3.0",
"js-yaml": "^4.1.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}