-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 853 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": "@tmanderson/pc",
"description": "PC is minimal [parser combinator](https://en.wikipedia.org/wiki/Parser_combinator) framework enabling intuitive and modular parser development.",
"version": "1.2.0",
"main": "dist/index.js",
"directories": {
"dist": "dist",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmanderson/pc.git"
},
"devDependencies": {
"jest": "^27.4.7",
"typescript": "^4.5.4"
},
"scripts": {
"build": "tsc src/index.ts && mv src/index.js dist/index.js",
"test": "npm run build && jest"
},
"keywords": [
"parser",
"parser-generator",
"parsing"
],
"author": "Mitch Anderson",
"license": "ISC",
"bugs": {
"url": "https://github.com/tmanderson/pc/issues"
},
"homepage": "https://github.com/tmanderson/pc#readme"
}