-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "showdown-katex",
"author": "obedm503",
"homepage": "https://obedm503.github.io/showdown-katex/",
"description": "showdown extension that adds latex and asciimath support",
"keywords": [
"markdown",
"showdown",
"latex",
"asciimath",
"katex"
],
"version": "0.8.0",
"license": "MIT",
"browser": "dist/showdown-katex.js",
"main": "lib/showdown-katex.js",
"jsnext:main": "src/showdown-katex.js",
"unpkg": "dist/showdown-katex.js",
"files": [
"dist",
"src",
"lib"
],
"scripts": {
"dev": "nps dev",
"build": "nps build",
"prepublishOnly": "nps build && nps deploy",
"test": "nps build.cjs && BABEL_ENV=test ava ./src/*.spec.js --verbose"
},
"ava": {
"require": "@babel/register"
},
"repository": {
"type": "git",
"url": "https://github.com/obedm503/showdown-katex.git"
},
"dependencies": {
"jsdom": "^16.2.1",
"katex": "^0.11.1"
},
"peerDependencies": {
"showdown": "^1.9.1"
},
"devDependencies": {
"@ava/babel-preset-stage-4": "^4.0.0",
"@ava/babel-preset-transform-test-files": "^6.0.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"ava": "^3.5.0",
"ejs": "^3.0.1",
"fs-extra": "^8.1.0",
"gh-pages": "^2.1.1",
"http-server": "^0.12.1",
"nodemon": "^2.0.2",
"nps": "^5.9.8",
"nps-utils": "^1.7.0",
"rollup": "^1.26.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-inject": "^3.0.2",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"showdown": "^1.9.1"
},
"optionalDependencies": {}
}