forked from vposd/ts-randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.71 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ts-randomizer",
"version": "2.0.2",
"description": "A tool to create random data by type parameters",
"main": "index.js",
"types": "index.d.ts",
"author": {
"name": "Valerii Posdnyakov",
"email": "vpposd@gmail.com"
},
"homepage": "https://github.com/vposd/ts-randomizer#readme",
"bugs": {
"url": "https://github.com/vposd/ts-randomizer/issues"
},
"keywords": [
"typescript",
"autofixture",
"fixture",
"randomizer",
"tdd",
"mock",
"auto"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"posttest": "npm run check",
"postversion": "git push && git push --tags",
"prepare": "npm run compile",
"pretest": "npm run compile",
"report-coverage": "codecov",
"test": "node test/index.js && npx jest --coverage",
"test-watch": "nodemon --watch src --watch test -e ts --exec npm run test",
"version": "npm run check && git add -A src"
},
"license": "MIT",
"files": [
"index.d.ts",
"index.js",
"src/**/*.d.ts",
"src/**/*.js",
"transformer.d.ts",
"transformer.js"
],
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"codecov": "^3.8.3",
"eslint": "^8.54.0",
"gts": "^5.2.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"dependencies": {
"lodash": "^4.17.21",
"uuid": "^9.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}