-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "json-schema-migrate",
"version": "2.0.0",
"description": "Migrate JSON-Schema to draft-06",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"eslint": "eslint src spec",
"prettier:write": "prettier --write \"./**/*.{md,json,yaml,js,ts}\"",
"prettier:check": "prettier --list-different \"./**/*.{md,json,yaml,js,ts}\"",
"test-spec": "jest \"spec/*.ts\"",
"test-cov": "jest \"spec/*.ts\" --coverage",
"test": "npm run build && npm run eslint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-schema-migrate.git"
},
"keywords": [
"JSON-Schema",
"migrate",
"draft-06"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/json-schema-migrate/issues"
},
"homepage": "https://github.com/epoberezkin/json-schema-migrate#readme",
"dependencies": {
"ajv": "^8.0.0"
},
"devDependencies": {
"@ajv-validator/config": "^0.3.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.13.0",
"glob": "^7.1.3",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"prettier": "@ajv-validator/config/prettierrc.json",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{md,json,yaml,js,ts}": "prettier --write"
}
}