-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "@redocly/json-to-json-schema",
"version": "0.0.1",
"description": "Convert JSON example into JSON schema",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"compile": "tsc",
"prepublishOnly": "npm run compile",
"prepare": "husky install",
"prettier-base": "prettier \"**/*.{json,js,jsx,ts,tsx,yml,yaml,html,md}\"",
"prettier": "npm run prettier-base -- --write",
"prettier:check": "npm run prettier-base -- --check"
},
"author": "Roman Hotsiy <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@types/jest": "^27.4.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"lint-staged": "^12.3.6",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}