-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "testgen-api",
"version": "1.0.0",
"description": "Generates test cases based on submitted code",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": "git+https://github.com/osilkin98/testgen-api.git",
"keywords": [
"unit",
"testing",
"test",
"generate",
"ai",
"openai"
],
"author": "Oleg Silkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/osilkin98/testgen-api/issues"
},
"homepage": "https://github.com/osilkin98/testgen-api#readme",
"private": false,
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"chai": "^4.3.4",
"eslint": "^8.0.1",
"mocha": "^9.1.3",
"nodemon": "^2.0.13",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}