-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "jest-json-schema-extended",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint '**/*.ts'",
"prettify": "prettier '**/*.ts' --write",
"lintFull": "npm run prettify && npm run lint -- --fix",
"watch": "npm run build -- --watch",
"precommit": "lint-staged",
"build": "rm -rf dist && node_modules/typescript/bin/tsc",
"release": "bash release.sh",
"document": "./node_modules/jsdoc-to-markdown/bin/cli.js -m none -g none dist/index.js",
"readme-cleanup": "sed -i -e 's/^\\*\\*Kind\\*\\*: .*$//g' ./README.md",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.ts": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
},
"author": "",
"homepage": "https://github.com/rickschubert/jest-json-schema-extended#readme",
"license": "ISC",
"dependencies": {
"jest-json-schema": "^5.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.22.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"typescript": "^4.2.4",
"eslint": "^7.24.0",
"eslint-config-rickschubert": "^1.0.10",
"husky": "^2.1.0",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^7.0.1",
"lint-staged": "^8.1.5",
"prettier": "^1.18.2",
"tslint": "^5.17.0"
}
}