-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 897 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 897 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
34
35
36
37
38
39
40
{
"name": "agify-api-test",
"version": "1.0.0",
"description": "BDD API tests for agify.io using Cucumber and TypeScript",
"main": "index.js",
"scripts": {
"test": "cucumber-js",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"api",
"testing",
"bdd",
"cucumber",
"typescript",
"agify"
],
"author": "John Ni",
"devDependencies": {
"@cucumber/cucumber": "^10.0.0",
"@eslint/js": "^9.30.1",
"@types/dotenv": "^6.1.1",
"@types/node": "^20.0.0",
"dotenv": "^17.1.0",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
},
"dependencies": {
"@types/chai": "^4.3.0",
"axios": "^1.6.0",
"chai": "^4.3.0"
}
}