forked from zestedesavoir/zmarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"engines": {
"node": ">=8"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"del-cli": "^1.0.0",
"envify": "^4.1.0",
"eslint": "^4.5.0",
"exorcist": "^0.4.0",
"html-differ": "^1.3.4",
"jest": "^20.0.4",
"jest-environment-node-debug": "^2.0.0",
"lerna": "^2.1.2",
"rebber": "^2.0.1",
"rehype-footnotes-title": "^0.0.18",
"rehype-html-blocks": "^0.0.20",
"rehype-katex": "^1.0.2",
"rehype-stringify": "^3.0.0",
"remark": "^8.0.0",
"remark-align": "^1.0.6",
"remark-captions": "^1.0.4",
"remark-comments": "^1.0.6",
"remark-custom-blocks": "^1.0.5",
"remark-emoticons": "^0.0.24",
"remark-escape-escaped": "^0.0.21",
"remark-grid-tables": "^1.0.5",
"remark-heading-shift": "^1.0.2",
"remark-heading-trailing-spaces": "^0.0.17",
"remark-iframes": "^1.0.5",
"remark-kbd": "^1.0.5",
"remark-math": "^1.0.1",
"remark-numbered-footnotes": "^1.0.0",
"remark-parse": "^4.0.0",
"remark-rehype": "^2.0.1",
"remark-sub-super": "^1.0.6",
"textr": "^0.3.0",
"typographic-apostrophes": "^1.1.1",
"typographic-apostrophes-for-possessive-plurals": "^1.0.5",
"typographic-colon": "^1.0.5",
"typographic-copyright": "^1.0.1",
"typographic-ellipses": "^1.0.11",
"typographic-em-dash": "^1.0.4",
"typographic-em-dashes": "^1.0.2",
"typographic-en-dashes": "^1.0.1",
"typographic-exclamation-mark": "^1.0.4",
"typographic-guillemets": "^1.0.4",
"typographic-percent": "^1.0.4",
"typographic-permille": "^1.0.4",
"typographic-question-mark": "^1.0.4",
"typographic-registered-trademark": "^1.0.1",
"typographic-semicolon": "^1.0.4",
"typographic-single-spaces": "^1.0.2",
"typographic-trademark": "^1.0.1",
"uglifyify": "^4.0.3",
"unified": "^6.1.5",
"unist-util-inspect": "^4.1.1",
"unist-util-visit": "^1.1.3"
},
"scripts": {
"postinstall": "lerna bootstrap --hoist",
"test": "jest",
"d": "node --inspect --debug-brk ./node_modules/.bin/jest --runInBand -i",
"coverage": "jest --coverage",
"submoduleupdate": "git submodule foreach git pull origin master",
"latextemplatecopy": "cp -f packages/zmarkdown/latex-template/zmdocument.cls packages/zmarkdown",
"prepublish": "npm run submoduleupdate && npm run latextemplatecopy",
"prepare": "npm run prepublish"
}
}