forked from maasglobal/io-ts-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "io-ts-validator",
"version": "0.0.1",
"description": "",
"main": "lib/validator.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --no-cache",
"clean": "rm -rf lib",
"typecheck": "tsc -p src/tsconfig.json",
"build": "yarn clean && tsc",
"eslint": "eslint --max-warnings=0 '**/*.{ts,js,json}'",
"lint": "yarn eslint",
"ci": "yarn lint && yarn typecheck && yarn test && yarn build",
"deploy-npm": "yarn ci && yarn publish"
},
"peerDependencies": {
"fp-ts": "^2.0.0",
"io-ts": "^2.1.2"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-maasglobal-ts": "^0.0.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-prettier": "^3.1.2",
"fp-ts": "^2.0.0",
"io-ts": "^2.1.2",
"jest": "^25.1.0",
"monocle-ts": "^2.0.0",
"prettier": "^1.18.2",
"ts-jest": "^25.2.1",
"typescript": "^3.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maasglobal/io-ts-validator.git"
},
"keywords": [
"io-ts",
"typescript"
],
"bugs": {
"url": "https://github.com/maasglobal/io-ts-validator/issues"
},
"homepage": "https://github.com/maasglobal/io-ts-validator/",
"license": "MIT"
}