-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.64 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
{
"name": "metalsmith-section",
"description": "A metalsmith plugin which parses html content into named sections.",
"version": "1.0.3",
"main": "dist/metalsmith-section.js",
"dependencies": {
"metalsmith-debug": "^1.2.0",
"multimatch": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.35",
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"babel-minify": "^0.2.0",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"handlebars": "^4.0.5",
"markdown-it": "^8.4.0",
"metalsmith": "^2.1.0",
"metalsmith-layouts": "^1.4.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-markdownit": "^0.4.0",
"metalsmith-watch": "^1.0.3",
"mocha": "^4.0.1",
"sinon": "^4.1.3"
},
"scripts": {
"start": "npm run build && npm run debug",
"debug": "DEBUG=metalsmith:section node example/index.js",
"build": "babel index.js -o ./dist/metalsmith-section.js -s",
"min": "minify index.js -o ./dist/metalsmith-section.min.js",
"dist": "npm run build && npm run min",
"test": "DEBUG=metalsmith:section npm run unit && npm run lint",
"unit": "mocha",
"lint": "eslint index.js --fix",
"prepublishOnly": "npm run dist && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brenwell/metalsmith-subsections.git"
},
"keywords": [
"metalsmith",
"sections",
"named",
"markdown",
"markdown-it"
],
"author": "Brendon Blackwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/brenwell/metalsmith-subsections/issues"
},
"homepage": "https://github.com/brenwell/metalsmith-subsections#readme"
}