-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 1.61 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
{
"name": "markdown-it-task-checkbox",
"version": "1.0.6",
"description": "A markdown-it plugin to create GitHub-style task lists",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 5000",
"clean": "rm -Rf dist && mkdir dist",
"build": "npm run clean && npm run build-dist",
"build-dist": "npm run build-dist-copyright && npm run build-dist-file && npm run build-dist-min",
"build-dist-copyright": "echo /*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} by ${npm_package_author} @license ${npm_package_license} \\*/ > dist/${npm_package_name}.js",
"build-dist-file": "browserify ${npm_package_main} -s markdownitTaskLists >> dist/${npm_package_name}.js",
"build-dist-min": "uglifyjs dist/${npm_package_name}.js -b beautify=false,ascii-only=true -c -m --preamble \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} by ${npm_package_author} @license {$npm_package_license} */\" > dist/${npm_package_name}.min.js"
},
"repository": {
"type": "git",
"url": "[email protected]:linsir/markdown-it-task-checkbox.git"
},
"dependencies": {},
"devDependencies": {
"browserify": "*",
"cheerio": "^0.20.0",
"markdown-it": "^7.0.0",
"mocha": "*",
"uglify": "*",
"underscore": "^1.8.3"
},
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"task",
"list",
"todo",
"checkbox"
],
"author": "linsir",
"license": "ISC",
"bugs": {
"url": "https://github.com/linsir/markdown-it-task-checkbox/issues"
},
"homepage": "https://github.com/linsir/markdown-it-task-checkbox#readme"
}