-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 850 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
{
"name": "texjs-parser",
"version": "0.8.5",
"description": "Parses a TeX string and outputs the hierarchy of text and commands as JSON",
"main": "lib/parseTex.js",
"scripts": {
"lint": "eslint lib/*.js test/*.js",
"test": "mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lasalvavida/texjs-parser"
},
"keywords": [
"latex",
"json",
"parser"
],
"author": "Rob Taglang",
"license": "MIT",
"bugs": {
"url": "https://github.com/lasalvavida/texjs-parser/issues"
},
"homepage": "https://github.com/lasalvavida/texjs-parser#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-plugin-mocha": "^4.8.0",
"mocha": "^3.2.0"
}
}