-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2 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
{
"name": "markademic",
"version": "0.20.0",
"description": "🏫 A tool for rendering academically flavored markdown.",
"typings": "dist/markademic.d.ts",
"types": "dist/markademic.d.ts",
"source": "src/markademic.ts",
"main": "dist/markademic.js",
"module": "dist/markademic.js",
"unpkg": "dist/markademic.umd.js",
"type": "module",
"exports": {
"require": "./dist/markademic.cjs",
"default": "./dist/markademic.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production microbundle ./src/markademic.ts --generateTypes --target node",
"develop": "cross-env NODE_ENV=development microbundle ./src/markademic.ts --generateTypes --target node",
"test": "c8 ava",
"coverage": "nyc npm test && nyc report --reporter=lcov && codecov",
"test:watch": "ava --converage --watch",
"start": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plus1tv/markademic.git"
},
"keywords": [
"markdown",
"academic",
"paper",
"publication",
"latex",
"syntax highlighting",
"citation",
"bibjson"
],
"author": "Alain Galvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/plus1tv/markademic/issues"
},
"homepage": "https://github.com/plus1tv/markademic#readme",
"ava": {
"verbose": true,
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"files": [
"tests/**/*.test.ts"
]
},
"devDependencies": {
"@types/katex": "0.16.x",
"@types/node": "^18.11.x",
"@types/remarkable": "^1.7.5",
"ava": "^5.1.x",
"c8": "^7.12.x",
"codecov": "^3.8.x",
"coveralls": "^3.1.x",
"cross-env": "^7.0.x",
"microbundle": "^0.15.x",
"nyc": "^15.1.x",
"ts-loader": "^9.4.x",
"ts-node": "^10.9.1",
"typescript": "^4.9.x"
},
"dependencies": {
"highlight.js": "^11.7.x",
"katex": "^0.16.x",
"md5": "^2.3.x",
"remarkable": "^2.0.x"
}
}