-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.46 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
47
48
49
50
51
52
{
"name": "generate-runtypes",
"version": "3.1.1",
"description": "A code generator tool for Runtypes types",
"repository": "github:simenandre/generate-runtypes",
"license": "Apache-2.0",
"main": "dist/main.js",
"scripts": {
"dev": "tsnd --respawn src/main.ts",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage src/**/*",
"test:watch": "jest --watch",
"build": "tsc",
"generate:docs": "typedoc --readme none --exclude '**/__tests__/*' --out docs src"
},
"lint-staged": {
"src/**/*.{yaml,yml}": "prettier --write",
"src/**/*.{js,ts}": "eslint --cache --fix",
"{.eslintrc}": "prettier --write",
"*.md": "prettier --write"
},
"dependencies": {
"jsesc": "^3.0.2",
"prettier": "^2.3.1",
"runtypes": "^6.2.1",
"typescript": "~4.3.2"
},
"devDependencies": {
"@types/faker": "^5.5.6",
"@types/jest": "~26.0.22",
"@types/jsesc": "^3.0.0",
"@types/node": "~14.17.3",
"@typescript-eslint/eslint-plugin": "~4.28.1",
"@typescript-eslint/parser": "~4.32.0",
"eslint": "~7.32.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "~24.3.5",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "~27.2.2",
"lint-staged": "^11.0.0",
"ts-jest": "~27.0.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.7.1"
},
"engines": {
"node": ">=12"
}
}