-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 856 Bytes
/
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
{
"name": "texvcjs",
"version": "0.3.1-git",
"description": "A TeX/LaTeX validator for mediawiki.",
"main": "lib/index.js",
"scripts": {
"build": "node -e 'require(\"./lib/build-parser\")'",
"test": "node -e 'require(\"./lib/build-parser\")' && jshint . && jscs . && mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/cscott/texvcjs"
},
"keywords": [
"tex",
"wikitext",
"mediawiki"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/cscott/texvcjs/issues"
},
"dependencies": {
"commander": "~2.5.0"
},
"devDependencies": {
"jscs": "~1.13.0",
"jshint": "~2.7.0",
"mocha": "~2.0.1",
"pegjs": "~0.8.0"
},
"bin": {
"texvcjs": "./bin/texvcjs"
}
}