generated from omothm/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 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
60
61
62
63
64
65
{
"name": "ts-schema-parser",
"version": "0.5.0",
"description": "Parse objects of unknown origin into fully typed TypeScript objects",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "tsc --project tsconfig.dev.json",
"ci": "npm run lint && npm run build && npm test && npm run test:acceptance",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"test": "c8 --100 ava \"src/**/*.test.ts\"",
"test:acceptance": "ava \"test/acceptance/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/omothm/ts-schema-parser.git"
},
"keywords": [
"inference",
"schema",
"parser",
"type",
"typescript",
"validation",
"zod"
],
"author": "Omar Othman <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/omothm/ts-schema-parser/issues"
},
"homepage": "https://github.com/omothm/ts-schema-parser#readme",
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"tap": {
"ts": true
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"ava": "^5.1.0",
"c8": "^7.12.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
}
}