-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 917 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
36
37
38
39
{
"name": "texer",
"version": "0.1.0",
"description": "Replaces macros in .tex files based on user defined rules.",
"main": "lib/index.js",
"scripts": {
"test": "jshint . && mocha",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRMF/texer.git"
},
"keywords": [
"TeX",
"LaTeX",
"macro",
"replacement",
"semantics",
"texvc"
],
"author": "Moritz Schubotz",
"license": "ISC",
"bugs": {
"url": "https://github.com/DRMF/texer/issues"
},
"homepage": "https://github.com/DRMF/texer#readme",
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"commander": "^2.9.0"
}
}