-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "parsecco",
"version": "1.5.2",
"description": "parsecco is a parser combinator library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"mocha-generators": "^2.0.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.34",
"typescript": "^4.2.3"
},
"scripts": {
"test": "mocha -r ts-node/register test/*.spec.ts",
"build": "tsc && npx typedoc --entryPoints src/index.ts --out docs --excludeExternals --readme README.md && touch docs/.nojekyll",
"build:check": "tsc --noEmit",
"clean": "npx rimraf dist docs node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williams-cs/parsecco.git"
},
"keywords": [
"parser",
"combinator",
"typescript"
],
"contributors": [
"Daniel W. Barowy",
"Kiersten Campbell",
"Dzung Pham",
"Lily Shao",
"Emmie Hine"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/williams-cs/parsecco/issues"
},
"homepage": "https://github.com/williams-cs/parsecco#readme"
}