-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 784 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 784 Bytes
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
{
"name": "react-peg",
"version": "0.1.8",
"description": "A react style parser generator, based on PEG.js",
"keywords": [
"react",
"peg",
"parser",
"parser generator"
],
"repository": {
"type": "git",
"url": "https://github.com/mistlog/react-peg"
},
"homepage": "https://mistlog.github.io/react-peg",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test": "jest --coverage",
"build": "tsc"
},
"author": "mistlog",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/pegjs": "^0.10.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^4.1.3"
},
"dependencies": {
"pegjs": "^0.10.0"
}
}