-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2 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
{
"name": "@metalsmith/~core-plugin~",
"private": true,
"version": "0.1.0",
"description": "A Metalsmith plugin to ...",
"keywords": [
"~core-plugin~",
"metalsmith-plugin",
"metalsmith",
"static-site"
],
"source": "src/index.js",
"main": "lib/index.cjs",
"module": "lib/index.js",
"type": "module",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/metalsmith/~core-plugin~.git"
},
"files": [
"lib",
"src"
],
"directories": {
"lib": "lib",
"test": "test"
},
"author": "Kevin Van Lierde (https://webketje.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/metalsmith/~core-plugin~/issues"
},
"homepage": "https://github.com/metalsmith/~core-plugin~#readme",
"devDependencies": {
"assert-dir-equal": "^1.1.0",
"auto-changelog": "^2.4.0",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"globals": "^15.7.0",
"metalsmith": "^2.6.3",
"microbundle": "^0.15.1",
"mocha": "^10.5.2",
"prettier": "^3.3.2",
"release-it": "^17.4.1"
},
"peerDependencies": {
"metalsmith": "^2.6.3"
},
"scripts": {
"changelog": "auto-changelog -u --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 --fix .",
"lint:check": "eslint --fix-dry-run .",
"release": "npm run build && release-it .",
"build": "microbundle --target node -f cjs,esm --strict --generateTypes=false",
"prepack": "npm run build",
"test": "c8 mocha"
},
"engines": {
"node": ">=14.14.0"
},
"publishConfig": {
"access": "public"
}
}