forked from gcanti/io-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.49 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
72
73
74
75
76
77
78
{
"name": "io-ts",
"version": "2.2.10",
"description": "TypeScript runtime type system for IO decoding/encoding",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint -p tsconfig.tslint.json src/**/*.ts test/**/*.ts",
"jest": "jest",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples,exercises}/**/*.ts\"",
"test": "npm run prettier && npm run lint && npm run dtslint && npm run jest && npm run docs",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && npm run import-path-rewrite && ts-node scripts/build",
"postbuild": "prettier --loglevel=silent --write \"./dist/**/*.ts\"",
"prepublishOnly": "ts-node scripts/pre-publish",
"perf": "ts-node perf/index",
"dtslint": "dtslint dtslint",
"mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.ts",
"doctoc": "doctoc README.md index.md Decoder.md Encoder.md Codec.md Eq.md Schema.md",
"docs": "docs-ts",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"import-path-rewrite": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/io-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/io-ts/issues"
},
"homepage": "https://github.com/gcanti/io-ts",
"dependencies": {},
"peerDependencies": {
"fp-ts": "^2.0.0"
},
"devDependencies": {
"@types/benchmark": "1.0.31",
"@types/jest": "25.2.1",
"@types/node": "13.11.0",
"benchmark": "2.1.4",
"docs-ts": "^0.5.1",
"doctoc": "1.4.0",
"dtslint": "github:gcanti/dtslint",
"fast-check": "^1.24.2",
"fp-ts": "^2.8.1",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "25.2.7",
"mocha": "7.1.1",
"prettier": "2.0.2",
"rimraf": "3.0.2",
"ts-jest": "25.3.1",
"ts-node": "8.8.2",
"tslint": "6.1.1",
"tslint-config-standard": "9.0.0",
"typescript": "^3.9.6"
},
"tags": [
"typescript",
"runtime",
"decoder",
"encoder",
"schema"
],
"keywords": [
"typescript",
"runtime",
"decoder",
"encoder",
"schema"
]
}