-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "metalsmith-link-globs",
"version": "1.1.0",
"description": "Metalsmith plugin to repeat elements that use globs to match multiple files.",
"tags": [
"metalsmith",
"plugin",
"glob",
"link",
"a",
"href",
"script",
"img",
"src"
],
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf coverage node_modules/ package-lock.json",
"readme": "jsdoc2md --template README.hbt --no-cache -f 'lib/**/*' --global-index-format grouped --property-list-format list --param-list-format list > README.md",
"test": "istanbul cover jasmine && eslint lib spec && codecov",
"watch": "nodemon --exec jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/connected-world-services/metalsmith-link-globs.git"
},
"author": "Tyler Akins",
"license": "MIT",
"bugs": {
"url": "https://github.com/connected-world-services/metalsmith-link-globs/issues"
},
"homepage": "https://github.com/connected-world-services/metalsmith-link-globs#readme",
"dependencies": {
"cheerio": "^0.22.0",
"debug": "^2.6.8",
"metalsmith-plugin-kit": "^1.0.1"
},
"devDependencies": {
"codecov": "^2.2.0",
"eslint": "^4.0.0",
"istanbul": "^0.4.5",
"jasmine": "^2.6.0",
"jasmine-test-helpers": "^1.2.3",
"nodemon": "^1.11.0",
"metalsmith": "^2.3.0",
"mock-require": "^2.0.2"
}
}