-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "typed-parser",
"version": "0.1.5",
"description": "A parser library for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p . && npm run gendoc",
"nyc": "nyc mocha -r ts-node/register -r source-map-support/register",
"test": "npm run test:parser && npm run test:example && npm run test:format",
"test:parser": "npm run nyc -- test/parser.ts",
"test:example": "npm run nyc -- test/example.ts",
"test:format": "prettier --check src/*.ts test/*.ts README.md",
"gendoc": "ts-node test/gendoc.ts",
"prepublishOnly": "npm run build"
},
"author": "Yosuke Torii",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {},
"repository": "github:jinjor/typed-parser",
"keywords": [
"parser",
"parser-combinator",
"typescript"
]
}