-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"version": "0.0.0-semantically-released",
"name": "metalsmith-request",
"description": "Metalsmith plugin to grab content from the web and expose the results to metadata",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com)",
"homepage": "https://github.com/ahmadnassri/node-metalsmith-request",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/node-metalsmith-request.git"
},
"bugs": {
"url": "https://github.com/ahmadnassri/node-metalsmith-request/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"keywords": [
"metalsmith",
"plugin",
"request",
"http",
"json",
"got"
],
"engines": {
"node": ">=14"
},
"files": [
"src"
],
"main": "src/index.js",
"scripts": {
"test": "tap test --no-coverage",
"test:ci": "tap test --100",
"test:watch": "tap test --watch",
"test:report": "opener coverage/lcov-report/index.html"
},
"devDependencies": {
"metalsmith": "^2.5.1",
"rimraf": "^3.0.2",
"tap": "^16.3.2"
},
"dependencies": {
"got": "^11.8.3"
}
}