-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "test-data-generator",
"version": "1.0.0",
"description": "Tool to upload test data into CHT test instances.",
"type": "module",
"main": "built/index.js",
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.4"
},
"scripts": {
"postinstall": "npm run build",
"test": "mocha",
"lint": "eslint .",
"build": "npm run lint && tsc",
"generate": "node built/."
},
"bin": {
"tdg": "built/index.js"
},
"keywords": [
"CHT",
"test data"
],
"author": "",
"license": "AGPL-3.0-only",
"dependencies": {
"@faker-js/faker": "^8.3.1",
"axios": "^1.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@medic/eslint-config": "^1.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chai": "^4.3.10",
"eslint": "^8.55.0",
"mocha": "^10.2.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}