-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
77 lines (77 loc) · 2.44 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
{
"name": "schema-org-json-schemas",
"version": "2.1.4",
"description": "Generate JSON Schemas from Schema.org classes",
"main": "index.js",
"files": [
"schemas/"
],
"scripts": {
"test": "jest",
"prepare": "husky install",
"start": "rimraf 'schemas/*' && node build_schemas.js",
"check": "npm-run-all --silent --parallel check:* test",
"check:scripts": "eslint '**/*.js'",
"check:misc": "prettier --check '**/*.{json,md}'",
"fix:lint": "eslint --fix '**/*.js'",
"fix:misc": "prettier --write '**/*.{json,md}'"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{json,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/charlestati/schema-org-json-schema.git"
},
"keywords": [
"schema.org",
"json schema"
],
"author": "Charles Tatibouët <[email protected]> (https://charlestati.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/charlestati/schema-org-json-schema/issues"
},
"homepage": "https://github.com/charlestati/schema-org-json-schema#readme",
"devDependencies": {
"@commitlint/cli": "16.0.1",
"@commitlint/config-conventional": "16.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "8.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "27.4.0",
"ajv": "8.8.2",
"axios": "0.24.0",
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.10",
"eslint": "8.6.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "25.3.4",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "37.5.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.11.0",
"eslint-plugin-sort-class-members": "1.14.1",
"eslint-plugin-unicorn": "40.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
"fs-extra": "10.0.0",
"http-status-codes": "2.2.0",
"husky": "7.0.4",
"jest": "26.6.3",
"lint-staged": "12.1.5",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.3"
}
}