forked from wikimedia/mediawiki-services-texvcjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "mathoid-texvcjs",
"version": "0.3.10",
"description": "A TeX/LaTeX validator for MediaWiki.",
"main": "lib/index.js",
"scripts": {
"build": "node -e 'require(\"./lib/build-parser\")'",
"cover": "nyc --reporter=lcov --exclude lib/parser.js_mocha ",
"lint": "eslint --max-warnings 0 --ext .js .",
"test": "node -e 'require(\"./lib/build-parser\")' && npm run lint && mocha",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/texvcjs"
},
"keywords": [
"tex",
"wikitext",
"mediawiki",
"mathoid",
"texvc"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/project/profile/1771/"
},
"dependencies": {
"commander": "~6.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"nyc": "^15.1.0",
"eslint-config-wikimedia": "0.20.0",
"mocha": "~8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"pegjs": "~0.10.0"
},
"bin": {
"texvcjs": "./bin/texvcjs"
}
}