UNPKG

2.07 kBJSONView Raw
1{
2 "name": "metalsmith",
3 "version": "2.4.3",
4 "description": "An extremely simple, pluggable static site generator.",
5 "keywords": [
6 "static",
7 "jamstack",
8 "file",
9 "site",
10 "website",
11 "blog",
12 "generator",
13 "markdown",
14 "jekyll",
15 "metalsmith",
16 "yaml"
17 ],
18 "homepage": "https://metalsmith.io",
19 "bugs": "https://github.com/metalsmith/metalsmith/issues",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/metalsmith/metalsmith.git"
23 },
24 "license": "MIT",
25 "bin": {
26 "_metalsmith": "bin/_metalsmith",
27 "metalsmith": "bin/metalsmith"
28 },
29 "directories": {
30 "lib": "lib",
31 "test": "test"
32 },
33 "files": [
34 "index.js",
35 "lib/**",
36 "bin/**",
37 "CHANGELOG.md",
38 "snapcraft.yaml"
39 ],
40 "scripts": {
41 "coverage": "nyc report --reporter=text-lcov > ./coverage.info",
42 "lint:check": "eslint --cache --fix-dry-run index.js lib/* bin/* test/*.js",
43 "lint": "eslint --fix index.js lib/* bin/* test/*.js",
44 "format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"",
45 "format": "prettier --write \"**/*.{yml,md,js,json}\"",
46 "test": "nyc mocha",
47 "release": "release-it"
48 },
49 "mocha": {
50 "reporter": "spec",
51 "slow": 500,
52 "timeout": 3000
53 },
54 "dependencies": {
55 "chalk": "^4.1.2",
56 "clone": "^2.1.2",
57 "co-fs-extra": "^1.2.1",
58 "commander": "^6.2.1",
59 "cross-spawn": "^7.0.3",
60 "gray-matter": "^4.0.3",
61 "is-utf8": "~0.2.0",
62 "micromatch": "^4.0.5",
63 "rimraf": "^3.0.2",
64 "stat-mode": "^1.0.0",
65 "thunkify": "^2.1.2",
66 "unyield": "0.0.1",
67 "ware": "^1.3.0"
68 },
69 "devDependencies": {
70 "@metalsmith/drafts": "^1.1.1",
71 "@metalsmith/markdown": "^1.4.0",
72 "assert-dir-equal": "^1.1.0",
73 "eslint": "^8.8.0",
74 "eslint-config-prettier": "^8.3.0",
75 "eslint-plugin-import": "^2.25.4",
76 "eslint-plugin-node": "^11.1.0",
77 "mocha": "^7.2.0",
78 "nyc": "^15.1.0",
79 "prettier": "^2.5.1",
80 "release-it": "^14.12.3",
81 "toml": "^3.0.0"
82 },
83 "engines": {
84 "node": ">=8.6"
85 }
86}