This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.22 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
57
58
59
60
61
62
63
64
65
66
{
"name": "markdown-it-synapse",
"version": "1.1.10",
"description": "tag for markdown-it markdown parser.",
"main": "dist/index.js",
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"synapse"
],
"scripts": {
"build": "yarn tsc",
"browserify": "(printf \"/*! ${npm_package_name} ${npm_package_version} ${npm_package_homepage} @license MIT */\" && browserify ./dist/index.js -s markdownitSynapse) > dist/markdown-it-synapse.js",
"predist": "rm -rf dist && yarn build && yarn test",
"dist": "yarn browserify && yarn minify",
"lint": "eslint src/*",
"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": "yarn dist",
"test": "mocha -R spec",
"coverage": "rm -rf coverage && istanbul cover node_modules/.bin/_mocha",
"test-ci": "yarn lint && yarn build && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ",
"prepare": "husky install"
},
"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": {
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"browserify": "^17.0.0",
"eslint": "^8.18.0",
"eslint-plugin-mocha": "^10.0.5",
"handlebars": "^4.7.7",
"husky": ">=6",
"istanbul": "*",
"js-yaml": "^3.13.1",
"lint-staged": ">=10",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-testgen": "~0.1.0",
"mocha": ">=5.2.0",
"node": "^16",
"node-bin-setup": "1.0.6",
"prettier": "^2.7.1",
"request": "^2.88.2",
"typescript": "^4.7.4",
"uglify-js": "^2.8.29"
},
"directories": {
"test": "test"
},
"author": "Jay",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}