-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
57
58
59
60
61
62
{
"name": "fast-check-io-ts",
"version": "0.5.0",
"description": "io-ts codec to fast-check arbitrary mapping",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/giogonzo/fast-check-io-ts.git"
},
"bugs": {
"url": "https://github.com/giogonzo/fast-check-io-ts/issues"
},
"homepage": "https://github.com/giogonzo/fast-check-io-ts",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"jest": "jest",
"test": "npm run lint && npm run prettier-check && npm run dtslint && npm run jest",
"prettier-write": "prettier --write \"./{src,test}/**/*.ts\"",
"prettier-check": "prettier --list-different \"./{src,test}/**/*.ts\"",
"preversion": "npm run test",
"prepublish": "npm run build",
"lint": "tslint -p tsconfig.json src/*.ts",
"dtslint": "dtslint dtslint"
},
"keywords": [
"fast-check",
"io-ts",
"typescript",
"arbitrary",
"generative",
"testing"
],
"author": "Giovanni Gonzaga <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.0",
"dtslint": "github:gcanti/dtslint",
"fast-check": "^2.10.0",
"fp-ts": "^2.9.3",
"io-ts": "^2.2.13",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"fast-check": ">=1.16.0",
"io-ts": ">=2.0.0",
"fp-ts": ">=2.0.0"
},
"jest": {
"preset": "ts-jest"
}
}