-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 2.79 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "schematized",
"description": "Turn objects into JSON schemas! The more examples you provide, the better your schema will be.",
"version": "1.9.0",
"files": [
"dist"
],
"main": "dist",
"types": "dist/index.d.ts",
"repository": "https://github.com/ryparker/schematized.git",
"author": "Ryan Parker",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn tsc",
"lint": "xo src",
"fix": "xo src --fix",
"test": "yarn build && yarn nyc ava",
"clean": "rimraf ./dist"
},
"ava": {
"failFast": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"include": [
"__tests__/*",
"examples/*"
],
"exclude": [
"dist/**",
"docs/**"
]
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-dynamic-delete": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"./src/**/*": [
"xo src --fix"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"config": "./node_modules/cz-conventional-changelog"
}
],
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">= 12.x"
},
"resolutions": {
"mem": "^4.0",
"yargs-parser": "^13.1.2"
},
"dependencies": {
"lodash": "^4.17.20",
"sort-keys": "^4.2.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.19",
"ajv": "6.12.4",
"ava": "^3.15.0",
"commitizen": "^4.2.2",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cz-conventional-changelog": "3.3.0",
"eslint-config-xo-typescript": "^0.37.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"xo": "^0.36.1"
},
"keywords": [
"json",
"schema",
"object",
"convert",
"generate",
"types",
"type",
"genson",
"produce",
"generic",
"validation",
"data",
"datatypes",
"build"
]
}