-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@basketry/typescript-validators",
"version": "0.1.3",
"description": "Basketry generator for generating method validators for Typescript applications",
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"clean": "run-s -s clean:*",
"create-snapshot": "ts-node ./src/snapshot/create-snapshot.ts",
"lint": "run-s -s lint:*",
"fix": "run-s -s fix:*",
"clean:output": "rimraf lib",
"start": "node ./lib/index.js",
"prebuild": "run-s -s clean lint",
"build": "tsc",
"lint:eslint": "eslint src/**/*.*",
"fix:eslint": "eslint --fix src/**/*.*",
"lint:prettier": "prettier -c .",
"fix:prettier": "prettier -w .",
"clean:coverage": "rimraf coverage",
"pretest": "run-s -s clean",
"prepack": "run-s -s build"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basketry/typescript-validators.git"
},
"bugs": {
"url": "https://github.com/basketry/typescript-validators/issues"
},
"homepage": "https://github.com/basketry/typescript-validators",
"funding": "https://github.com/basketry/typescript-validators?sponsor=1",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@basketry/typescript": "^0.1.2",
"basketry": "^0.1.1",
"case": "^1.6.3",
"pluralize": "^8.0.0",
"semver": "^7.3.5"
}
}