-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 918 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
{
"name": "typesafe-parser",
"version": "0.0.1",
"description": "An experimental typesafe parser-combinator library",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^5.16.0 || ^6.8.0 || ^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.1.2"
},
"scripts": {
"build": "tsc",
"tcheck": "tsc --noEmit",
"tcheck-core": "tsc --noEmit --project tsconfig.core.json",
"lint": "tsc --noEmit && eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix",
"start": "yarn run build && node ./dist",
"test": "jest"
}
}