-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "xm",
"version": "1.0.7",
"description": "A tiny compiler for HTML that adds imports, slots/fills and markdown tags.",
"main": "index.js",
"bin": {
"xm": "index.js"
},
"scripts": {
"test:build": "rm -rf test/.tmp && node index.js build --output test/.tmp --root test/cases --config test/cases/config.js",
"test:dev": "rm -rf .xm && node index.js dev --root test/cases --config test/cases/config.js",
"pretest": "npm run test:build",
"test": "node test/test.js",
"pretest:snapshot": "npm run test:build",
"test:snapshot": "node test/createSnapshot.js",
"docs:build": "node index.js build docs.html --htmlOnly --config docs.config.js --output docs/index.html",
"prepublish": "npm run docs:build"
},
"author": "Giuseppe Gurgone",
"license": "MIT",
"keywords": [
"markdown",
"posthtml",
"html",
"docs generator"
],
"dependencies": {
"front-matter": "^4.0.2",
"ncp": "^2.0.0",
"posthtml-cli": "^0.8.1",
"posthtml-md2html": "^0.0.2",
"posthtml-xm-import": "^0.1.2",
"sirv": "^1.0.6"
},
"devDependencies": {
"highlight.js": "^10.1.2",
"snapshot-dir": "^1.1.2",
"source-map-support": "^0.5.19"
}
}