-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 2.34 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "io-ts-from-json-schema",
"version": "0.0.26",
"description": "Iotsfjs is a static code generation utility used for converting json schema files into static TypeScript types and io-ts runtime validators.",
"license": "MIT",
"keywords": [
"typescript",
"io-ts",
"code-generation"
],
"bugs": {
"url": "https://github.com/maasglobal/io-ts-from-json-schema/issues"
},
"homepage": "https://github.com/maasglobal/io-ts-from-json-schema/",
"repository": {
"type": "git",
"url": "git+https://github.com/maasglobal/io-ts-from-json-schema.git"
},
"main": "lib/cli.js",
"files": [
"lib/**/*"
],
"bin": {
"iotsfjs": "lib/cli.js"
},
"dependencies": {
"glob": "^7.1.6",
"io-ts-codegen": "^0.4.5",
"uri-template": "^1.0.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^27.0.1",
"@types/json-schema": "^7.0.7",
"@types/node": "^14.0.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"@typescript-eslint/typescript-estree": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-maasglobal-ts": "^0.0.13",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-deprecation": "^1.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"fp-ts": "^2.11.1",
"jest": "^26.4.2",
"maasglobal-reference-schemas": "^0.0.2",
"monocle-ts": "^2.1.0",
"prettier": "^2.1.2",
"ts-jest": "^26.3.0",
"typescript": "^4.4.2"
},
"scripts": {
"test": "jest --no-cache",
"clean": "rm -rf lib tmp",
"typecheck": "tsc -p src/tsconfig.json",
"build": "yarn clean && tsc && chmod u+x ./lib/cli.js",
"eslint": "eslint --max-warnings=0 '**/*.{ts,js,json}'",
"eslint-fix": "yarn eslint --fix||true",
"prettier": "prettier --write --ignore-path .gitignore --config node_modules/eslint-config-maasglobal-ts/prettierrc.js '**/*.{css,html,js,ts,json,md,yaml,yml}'",
"prettify": "yarn eslint-fix && yarn prettier",
"lint": "yarn eslint",
"ci": "yarn typecheck && yarn test && yarn lint && yarn build",
"deploy-npm": "yarn ci && yarn publish --non-interactive",
"deploy-alpha": "yarn deploy-npm --tag alpha"
}
}