-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "micro-down",
"version": "1.6.2",
"description": "tiny 1.4kB markdown parser",
"main": "dist/index.js",
"scripts": {
"test": "jest --config .jestrc.json ./src --coverage",
"build": "babel --out-dir dist src && uglifyjs --compress --mangle --output ./dist/index.js -- ./dist/index.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commit-intl/micro-down.git"
},
"keywords": [
"markdown",
"parser",
"tiny",
"mini",
"micro",
"minified",
"javascript",
"js"
],
"author": "Dustin Hagemeier <dustin@commit.international> (https://commit.international)",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"bugs": {
"url": "https://github.com/commit-intl/micro-down/issues"
},
"homepage": "https://github.com/commit-intl/micro-down#readme",
"devDependencies": {
"@babel/cli": "7.11.5",
"@babel/core": "7.11.5",
"@babel/preset-env": "7.11.5",
"jest": "^26.4.2",
"uglify-js": "3.10.3"
}
}