forked from Sage-Bionetworks/markdown-it-synapse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.91 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
56
{
"name": "markdown-it-synapse",
"version": "1.1.6",
"description": "tag for markdown-it markdown parser.",
"main": "index.js",
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"synapse"
],
"scripts": {
"browserify": "(printf \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} @license MIT */\" && browserify ./ -s markdownitSynapse) > dist/markdown-it-synapse.js",
"predist": "npm run test",
"dist": "rm -fr dist && mkdir dist && npm run browserify && npm run minify",
"lint": "eslint index.js",
"minify": "uglifyjs dist/markdown-it-synapse.js -b beautify=false,ascii_only=true -c -m --preamble \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} @license MIT */\" > dist/markdown-it-synapse.min.js",
"prepublish": "npm run dist",
"pretest": "npm run lint",
"test": "npm run lint && mocha -R spec",
"test-only": "mocha -R spec",
"coverage": "rm -rf coverage && istanbul cover node_modules/.bin/_mocha",
"test-ci": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec "
},
"homepage": "https://github.com/Sage-Bionetworks/markdown-it-synapse",
"repository": {
"type": "git",
"url": "git://github.com/Sage-Bionetworks/markdown-it-synapse.git"
},
"bugs": {
"url": "https://github.com/Sage-Bionetworks/markdown-it-synapse/issues"
},
"license": "MIT",
"devDependencies": {
"handlebars": ">=4.0.14",
"js-yaml": ">=3.13.1",
"browserify": ">=16.2.3",
"eslint": ">=4.19.1",
"eslint-plugin-nodeca": ">=1.0.0",
"istanbul": "*",
"lodash": ">=4.17.15",
"markdown-it": ">=9.0.1",
"markdown-it-testgen": "~0.1.0",
"mocha": ">=5.2.0",
"request": ">=2.88.0",
"uglify-js": "*",
"node-bin-setup": "1.0.6"
},
"dependencies": {
"node": "^10.3.0"
},
"directories": {
"test": "test"
},
"author": "Jay"
}