-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "latex-math-parser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/andstor/latex-math-parser.git"
},
"bugs": {
"url": "https://github.com/andstor/latex-math-parser/issues"
},
"homepage": "https://github.com/andstor/latex-math-parser",
"scripts": {
"test": "mocha",
"build": "node ./generate.js && tsc ",
"watch": "npm-watch"
},
"files": [
"dist/src"
],
"keywords": [
"latex",
"parser",
"peggy"
],
"author": {
"name": "André Storhaug",
"email": "andr3.storhaug@gmail.com",
"url": "https://github.com/andstor"
},
"license": "MIT",
"types": "dist/src",
"sideEffects": false,
"dependencies": {
"peggy": "^1.2.0",
"ts-pegjs": "^1.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.12",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"npm-watch": "^0.11.0",
"pegjs-backtrace": "^0.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"watch": {
"build": {
"patterns": [
"src/grammars/latex.pegjs",
"src/generator.ts"
],
"extensions": [
"pegjs",
"ts"
]
}
}
}