-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "@paperist/remark-latex",
"description": "wooorm/remark plugin for latex",
"license": "MIT",
"version": "2.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm-run-all clean -p build:*",
"build:cp": "cpx \"src/**/!(*.ts)\" lib",
"build:ts": "tsc",
"clean": "rimraf lib/*",
"precommit": "lint-staged"
},
"dependencies": {
"@paperist/remark-crossref": "^1.0.3",
"@paperist/remark-math": "^1.0.3",
"@paperist/remark-table-caption": "^1.0.1",
"ejs": "^2.5.7",
"find-up": "^2.1.0",
"js-yaml": "^3.9.1",
"lodash": "^4.17.4",
"remark-frontmatter": "^1.1.0",
"unist-util-visit": "^1.1.3"
},
"devDependencies": {
"@paperist/types-remark": "^0.1.3",
"@types/ejs": "^2.3.33",
"@types/js-yaml": "^3.9.0",
"@types/lodash": "^4.14.71",
"@types/node": "^8.0.19",
"cpx": "^1.5.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"npm-run-all": "^4.0.2",
"prettier-package-json": "^1.4.0",
"remark": "^8.0.0",
"remark-cli": "^4.0.0",
"rimraf": "^2.6.1",
"typescript": "^2.4.2"
},
"keywords": [
"latex",
"markdown",
"remark",
"tex"
],
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"types": "lib/index.d.ts"
}