-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 2.18 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": "@quasibit/eleventy-plugin-schema",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "1.11.1",
"engines": {
"node": ">=12.0.0"
},
"description": "Eleventy plugin to generate JSON-LD structured data.",
"main": ".eleventy.js",
"scripts": {
"demo": "npx @11ty/eleventy --input=demo --output=demo/_site --config=demo/.eleventy.js",
"test": "run-p -c test:* demo",
"test:ava": "ava",
"test:eslint": "eslint \"./**/*.js\" --color",
"test:prettier": "prettier --check ./**/*.js",
"coverage": "nyc --reporter=lcov ava",
"format": "prettier --write ./**/*.js",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quasibit/eleventy-plugin-schema.git"
},
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"json-ld",
"jsonld",
"schema"
],
"author": {
"name": "Nuno Freitas",
"email": "nuno.freitas@quasibit.com",
"homepage": "https://www.quasibit.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quasibit/eleventy-plugin-schema/issues"
},
"homepage": "https://github.com/quasibit/eleventy-plugin-schema#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"ava": "^3.15.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.3.1",
"eslint-config-hardcore": "^12.5.0",
"eslint-plugin-ava": "^10.3.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"semantic-release": "^19.0.3"
},
"peerDependencies": {
"@11ty/eleventy": "^0.11.0 || ^0.12.0 || ^1.0.0 || ^2.0.0 || ^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}