forked from jsonresume/resume-schema
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.85 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
{
"name": "@anolilab/resume-schema",
"version": "2.0.3",
"description": "JSON Resume Schema",
"keywords": [
"resume-schema",
"resume",
"json-schema"
],
"homepage": "https://anolilab.com/nodejs/packages/anolilab/resume-schema",
"bugs": {
"url": "https://github.com/anolilab/resume-schema/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/anolilab/resume-schema.git"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"default": "./schema.json"
},
"./package.json": "./package.json",
"./schema.json": "./schema.json"
},
"main": "schema.json",
"types": "types.d.ts",
"files": [
"sample.resume.json",
"schema.json",
"types.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"clean": "rm -rf node_modules && rm -rf dist",
"commit": "cz",
"generate:types": "node ./scripts/build.js",
"lint:eslint": "cross-env NO_LOGS=true eslint . --ext js,jsx,ts,tsx --max-warnings=0 --config .eslintrc.cjs --cache --cache-strategy content .",
"lint:eslint:fix": "pnpm run lint:eslint --fix",
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"lint:text": "textlint ./.github/ISSUE_TEMPLATE/** ./README.md ./UPGRADE.md --parallel --experimental --dry-run",
"lint:text:fix": "textlint ./.github/ISSUE_TEMPLATE/** ./README.md ./UPGRADE.md --parallel --experimental --fix",
"prepare": "is-ci || (node verify-node-version.cjs && pnpx only-allow pnpm && husky install)",
"test": "vitest"
},
"devDependencies": {
"@anolilab/eslint-config": "^4.0.7",
"@anolilab/prettier-config": "^3.0.1",
"@anolilab/semantic-release-preset": "^2.0.5",
"@anolilab/textlint-config": "^4.0.3",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"c8": "^7.11.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-plugin-editorconfig": "^3.2.0",
"eslint-plugin-json": "^3.1.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"json-metaschema": "^1.3.0",
"json-schema-to-typescript": "^10.1.5",
"jsonlint-cli": "^1.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"textlint": "^12.1.1",
"typescript": "^4.7.2",
"vitest": "^0.12.9"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}