-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "io-ts-codegen",
"version": "0.5.0",
"description": "Code generation for io-ts",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint -p tsconfig.json src/**/*.ts test/**/*.ts",
"mocha": "mocha -r ts-node/register test/*.ts",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test,examples}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples}/**/*.ts\"",
"test": "npm run prettier && npm run lint && npm run jest && npm run docs",
"clean": "rm -rf lib/*",
"build": "npm run clean && tsc",
"prepublish": "npm run build",
"jest": "jest --ci --coverage",
"docs": "docs-ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/io-ts-codegen.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/io-ts-codegen/issues"
},
"homepage": "https://github.com/gcanti/io-ts-codegen",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "7.0.4",
"docs-ts": "^0.1.0",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"prettier": "^2.8.4",
"ts-jest": "^24.0.2",
"ts-lint": "^4.5.1",
"ts-node": "3.2.0",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"tags": [
"typescript",
"io-ts",
"code-generation"
],
"keywords": [
"typescript",
"io-ts",
"code-generation"
]
}