-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "@metalsmith/metadata",
"version": "0.3.0",
"description": "A metalsmith plugin to load global metadata from files and directories",
"keywords": [
"metalsmith-plugin",
"metalsmith",
"metadata",
"yaml",
"json",
"toml",
"static-site"
],
"homepage": "https://github.com/metalsmith/metadata#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/metalsmith/metadata.git"
},
"license": "MIT",
"source": "src/index.js",
"main": "lib/index.cjs",
"module": "lib/index.js",
"type": "module",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"changelog": "auto-changelog -u date --commit-limit false --ignore-commit-pattern '^((dev|chore|ci):|Release)'",
"coverage": "npm test && c8 report --reporter=text-lcov > ./coverage.info",
"format": "prettier --write \"**/*.{yml,md,js,json}\"",
"format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"",
"lint": "eslint --cache --fix \"{src,test}/**/*.js\"",
"lint:check": "eslint --cache --fix-dry-run \"{src,test}/**/*.js\"",
"release": "release-it .",
"build": "microbundle --target node -f cjs,esm --strict --generateTypes=false",
"test": "c8 mocha -t 5000"
},
"dependencies": {
"deepmerge": "^4.3.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"auto-changelog": "^2.3.0",
"c8": "^7.14.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"metalsmith": "^2.6.0",
"microbundle": "^0.15.1",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"release-it": "^15.11.0"
},
"peerDependencies": {
"metalsmith": "^2.5.0",
"toml": "^3.0.0"
},
"peerDependenciesMeta": {
"toml": {
"optional": true
}
},
"engines": {
"node": ">=14.14.0"
},
"publishConfig": {
"access": "public"
}
}