-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "@pubpub/prosemirror-pandoc",
"version": "1.1.5",
"description": "Convert between Prosemirror schemas and the Pandoc AST",
"main": "dist/index.js",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/katex": "^0.10.2",
"@types/node": "^12.7.4",
"@types/prosemirror-model": "^1.13.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"katex": "^0.11.1",
"prettier": "^2.3.2",
"prosemirror-model": "^1.14.3",
"prosemirror-tables": "^0.9.5",
"ts-jest": "^24.0.2",
"ts-node": "^8.6.2",
"tsc-alias": "^1.3.9",
"typescript": "^4.3.5",
"yargs": "^14.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc && tsc-alias",
"build:watch": "tsc -w & tsc-alias -w",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run lint && npm test && npm run build",
"convert": "ts-node src/example/convert.ts",
"parse": "ts-node src/example/parse.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubpub/prosemirror-pandoc.git"
},
"author": "Ian Reynolds",
"license": "MIT",
"bugs": {
"url": "https://github.com/pubpub/prosemirror-pandoc/issues"
},
"homepage": "https://github.com/pubpub/prosemirror-pandoc#readme",
"prettier": {
"tabWidth": 4,
"useTabs": false,
"trailingComma": "es5"
},
"dependencies": {}
}