-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "metalsmith-preview",
"version": "1.0.8",
"description": "A Metalsmith plugin for generating custom text previews.",
"keywords": [
"metalsmith",
"plugin",
"preview",
"excerpt",
"snippet",
"content",
"blog",
"text",
"custom"
],
"bugs": {
"url": "https://github.com/davidtimmons/metalsmith-preview/issues"
},
"license": "MIT",
"author": {
"name": "David Timmons",
"email": "[email protected]",
"url": "http://david.timmons.io"
},
"files": [
"lib/index.js",
"lib/preview.js"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/davidtimmons/metalsmith-preview.git"
},
"scripts": {
"lint": "eslint --ignore-pattern .json --ext .js ./lib ./test",
"test": "mocha --check-leaks ./test",
"test:verbose": "DEBUG=metalsmith-preview yarn run test"
},
"dependencies": {
"debug": "^4.3.4",
"multimatch": "^5.0.0"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"metalsmith": "^2.4.2",
"metalsmith-debug": "^1.2.0",
"mocha": "^9.2.2",
"rewire": "^6.0.0",
"sinon": "^13.0.2"
},
"engines": {
"node": ">=10"
}
}