forked from cscott/texvcjs
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "mathoid-texvcjs",
"version": "0.5.4",
"description": "A TeX/LaTeX validator for MediaWiki.",
"main": "lib/index.js",
"scripts": {
"build": "node -e 'require(\"./lib/build-parser\")'",
"cover": "nyc --reporter=lcov _mocha --recursive",
"lint": "eslint --max-warnings 0 --ext .js . bin/texvcjs",
"lint:fix": "eslint --fix --ext .js . bin/texvcjs",
"test": "npm run build && npm run lint && npm run cover && npm run check-coverage",
"check-coverage": "nyc check-coverage --lines 100"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/texvcjs"
},
"keywords": [
"tex",
"wikitext",
"mediawiki",
"mathoid",
"texvc",
"tokens",
"identifier"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/project/profile/1771/"
},
"dependencies": {
"commander": "~11.1.0"
},
"devDependencies": {
"eslint-config-wikimedia": "0.25.1",
"jshint": "^2.13.6",
"mocha": "10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"peggy": "^3.0.2"
},
"bin": {
"texvcjs": "bin/texvcjs"
}
}