-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "@paperist/remark-crossref",
"description": "wooorm/remark plugin for corss-references inspired by pandoc-crossref",
"license": "MIT",
"author": "3846masa <[email protected]>",
"version": "2.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm-run-all clean prebuild:mkdir",
"build": "npm-run-all -p build:*",
"prebuild:mkdir": "mkdirp lib/peg",
"build:peg": "npm-run-all -p build:peg:*",
"build:peg:crossReference": "pegjs -o ./lib/peg/crossReference.js ./src/peg/crossReference.pegjs",
"build:peg:crossReferenceLabel": "pegjs -o ./lib/peg/crossReferenceLabel.js ./src/peg/crossReferenceLabel.pegjs",
"build:tsc": "tsc",
"clean": "rimraf lib",
"test": "exit 0"
},
"types": "lib/index.d.ts",
"dependencies": {
"@types/mdast": "^3.0.2",
"@types/unist": "^2.0.3",
"remark-parse": "^7.0.0",
"unist-util-visit": "^1.4.1"
},
"devDependencies": {
"@types/node": "^12.6.8",
"@types/pegjs": "^0.10.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"pegjs": "^0.10.0",
"rimraf": "^2.6.3",
"typescript": "^3.5.3",
"unified": "^8.3.2"
},
"keywords": [
"crossref",
"markdown",
"remark"
]
}