-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
79 lines (79 loc) · 2.29 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/in-place",
"author": "ismay",
"description": "A metalsmith plugin for in-place templating",
"license": "MIT",
"keywords": [
"in-place",
"templating",
"metalsmith-plugin",
"metalsmith"
],
"source": "src/index.js",
"main": "lib/index.cjs",
"module": "lib/index.js",
"type": "module",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/metalsmith/in-place.git"
},
"homepage": "https://github.com/metalsmith/in-place#readme",
"bugs": {
"url": "https://github.com/metalsmith/in-place/issues"
},
"version": "5.0.0",
"scripts": {
"changelog": "auto-changelog -u --starting-date 2021-12-01 --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}\"",
"test": "c8 mocha",
"test:cjs": "microbundle -i test/index.js -o test/index.cjs -f cjs --target=node --pkg-main=false --no-sourcemap --external assert-dir-equal,metalsmith,jstransformer-pug --generateTypes=false && mocha test/index.cjs",
"release": "release-it",
"build": "microbundle --target node -f cjs,esm --strict --generateTypes=false",
"prepack": "npm run build",
"lint": "eslint --fix .",
"lint:check": "eslint --fix-dry-run ."
},
"devDependencies": {
"assert-dir-equal": "^1.1.0",
"auto-changelog": "^2.5.0",
"c8": "^10.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"jstransformer-handlebars": "^1.2.0",
"jstransformer-marked": "^1.4.0",
"jstransformer-pug": "^0.4.0",
"metalsmith": "^2.6.3",
"microbundle": "^0.15.1",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"release-it": "^17.10.0"
},
"dependencies": {
"is-utf8": "^0.2.1",
"jstransformer": "^1.0.0"
},
"peerDependencies": {
"metalsmith": "^2.5.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=14.14.0"
}
}