forked from remarkjs/remark-math
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.09 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
79
80
81
82
83
84
{
"name": "@gradescope/remark-math",
"description": "Math Inline and Block supporting for Remark",
"publishConfig": {
"registry": "http://bin-repo.iparadigms.com/artifactory/api/npm/am-npm/"
},
"scripts": {
"postinstall": "lerna bootstrap",
"test": "jest --coverage",
"test:api": "jest",
"test:watch": "jest --watch",
"pretest": "npm run lint --silent",
"lint": "standard",
"demo:webpack": "webpack-dev-server --config examples/webpack/webpack.config.js",
"demo:nodejs": "node examples/nodejs/process.js",
"tii-publish-remark-math": "./scripts/tii-publish-remark-math.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gradescope/remark-math.git"
},
"keywords": [
"markdown",
"remark",
"math",
"katex",
"latex",
"tex"
],
"author": "Junyoung Choi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gradescope/remark-math/issues"
},
"homepage": "https://github.com/gradescope/remark-math#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"css-loader": "^0.28.4",
"eslint-plugin-jest": "^20.0.3",
"file-loader": "^0.11.2",
"github-markdown-css": "^2.6.0",
"hastscript": "^3.0.1",
"jest": "^20.0.4",
"katex": "^0.9.0",
"lerna": "^2.0.0-rc.5",
"rehype-parse": "^4.0.0",
"rehype-stringify": "^3.0.0",
"remark-html": "^6.0.1",
"remark-parse": "^4.0.0",
"remark-rehype": "^2.0.1",
"remark-stringify": "^3.0.1",
"standard": "^10.0.2",
"style-loader": "^0.18.2",
"unified": "^6.1.5",
"unist-builder": "^1.0.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {},
"standard": {
"parser": "babel-eslint",
"plugins": [
"jest"
],
"envs": [
"jest"
]
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"packages/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}