-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
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
{
"name": "zmdjs",
"version": "0.3.0",
"description": "Just a markdown parser",
"main": "zmd.js",
"scripts": {
"test": "npm run test:slug && npm run test:gfm && npm run test:diff && npm run test:coverage",
"test:slug": "mocha test/slug",
"test:gfm": "node test/gfm",
"test:diff": "node test/diff",
"test:coverage": "node test/coverage",
"dev": "http-server -p 2000 -s",
"prepublishOnly": "uglifyjs zmd.js --compress --mangle --comments --output zmd.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xovel/zmd.git"
},
"keywords": [
"markdown",
"markup",
"zmd",
"regular expression",
"lexer",
"html"
],
"author": {
"name": "xovel",
"email": "xovel@foxmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xovel/zmd/issues"
},
"homepage": "https://github.com/xovel/zmd#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-zob": "^0.0.4",
"http-server": "^0.10.0",
"mocha": "^6.1.4",
"uglify-js": "^2.7.5"
}
}