-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "@metalsmith/layouts",
"version": "2.7.0",
"description": "A metalsmith plugin for layouts",
"homepage": "https://github.com/metalsmith/layouts#readme",
"bugs": {
"url": "https://github.com/metalsmith/layouts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/metalsmith/layouts.git"
},
"license": "MIT",
"author": "Ismay Wolff (https://www.wolffsoftwareengineering.nl)",
"maintainers": [
"Kevin Van Lierde (https://webketje.com"
],
"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",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib"
],
"scripts": {
"changelog": "auto-changelog -u --starting-date 2021-12-22 --commit-limit false --ignore-commit-pattern '^((dev|chore|ci):|Release)'",
"coverage": "npm test && c8 report --reporter=text-lcov > ./coverage.info",
"release": "release-it .",
"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 .",
"build": "microbundle --target node --no-sourcemap -f cjs,esm --strict --generateTypes=false",
"prepack": "npm run build",
"test": "c8 mocha"
},
"dependencies": {
"inputformat-to-jstransformer": "^1.4.0",
"is-utf8": "^0.2.1",
"jstransformer": "^1.0.0"
},
"devDependencies": {
"assert-dir-equal": "^1.1.0",
"auto-changelog": "^2.4.0",
"c8": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"jstransformer-handlebars": "^1.2.0",
"jstransformer-qejs": "^0.2.0",
"metalsmith": "^2.6.2",
"microbundle": "^0.15.1",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"release-it": "^17.0.3"
},
"peerDependencies": {
"metalsmith": "^2.4.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.0.0"
}
}