-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "fp-ts-laws",
"version": "0.3.0",
"description": "fp-ts type class laws for property based testing",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint -p tsconfig.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}/**/*.ts\"",
"test": "npm run prettier && npm run jest && npm run docs",
"clean": "rimraf rm -rf lib/*",
"build": "npm run clean && tsc",
"prepublish": "npm run build",
"mocha": "mocha -r ts-node/register test/*.ts",
"docs": "docs-ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts-laws.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/fp-ts-laws/issues"
},
"homepage": "https://github.com/gcanti/fp-ts-laws",
"peerDependencies": {
"fast-check": "^2.6.0",
"fp-ts": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"docs-ts": "^0.5.2",
"fast-check": "^2.6.0",
"fp-ts": "^2.16.1",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.2"
},
"tags": [
"fp-ts",
"property-based-testing"
],
"keywords": [
"fp-ts",
"property-based-testing"
]
}