1{
2  "name": "fp-ts",
3  "version": "1.12.0",
4  "description": "Functional programming in TypeScript",
5  "files": [
6    "lib"
7  ],
8  "main": "lib/index.js",
9  "typings": "lib/index.d.ts",
10  "scripts": {
11    "lint": "tslint -p tsconfig.tslint.json src/**/*.ts test/**/*.ts",
12    "jest": "jest --ci",
13    "jest-coverage": "jest --ci --coverage",
14    "prettier": "prettier --list-different \"./{src,test,examples,exercises}/**/*.ts\"",
15    "fix-prettier": "prettier --write \"./{src,test,examples,exercises}/**/*.ts\"",
16    "typings": "typings-checker --allow-expect-error --project ./typings-checker/tsconfig.json ./typings-checker/index.ts",
17    "test": "npm run lint && npm run prettier && npm run typings && npm run jest && npm run docs",
18    "clean": "rimraf lib/*",
19    "build": "npm run clean && tsc",
20    "prepublish": "npm run build",
21    "docs": "rimraf docs/*.md docs-examples/*.ts && ts-node docs-generator/docs.ts && ts-node docs-examples/index.ts"
22  },
23  "repository": {
24    "type": "git",
25    "url": "https://github.com/gcanti/fp-ts.git"
26  },
27  "author": "Giulio Canti <giulio.canti@gmail.com>",
28  "license": "MIT",
29  "bugs": {
30    "url": "https://github.com/gcanti/fp-ts/issues"
31  },
32  "homepage": "https://github.com/gcanti/fp-ts",
33  "dependencies": {},
34  "devDependencies": {
35    "@types/doctrine": "0.0.3",
36    "@types/jest": "22.2.2",
37    "@types/node": "7.0.4",
38    "@types/prettier": "1.10.0",
39    "benchmark": "2.1.4",
40    "chalk": "2.2.0",
41    "doctrine": "2.0.0",
42    "jest": "22.4.3",
43    "prettier": "1.14.3",
44    "rimraf": "2.6.2",
45    "ts-jest": "^23.10.5",
46    "ts-node": "7.0.1",
47    "ts-simple-ast": "17.1.1",
48    "tslint": "5.11.0",
49    "tslint-config-standard": "8.0.1",
50    "typescript": "3.2.1",
51    "typings-checker": "2.0.0"
52  },
53  "tags": [
54    "typescript",
55    "algebraic-data-types",
56    "functional-programming"
57  ],
58  "keywords": [
59    "typescript",
60    "algebraic-data-types",
61    "functional-programming"
62  ],
63  "jest": {
64    "collectCoverageFrom": [
65      "src/**/*.{ts}",
66      "!src/Free.ts",
67      "!src/Store.ts"
68    ],
69    "transform": {
70      "^.+\\.tsx?$": "ts-jest"
71    },
72    "testRegex": "test",
73    "moduleFileExtensions": [
74      "ts",
75      "js"
76    ],
77    "coverageThreshold": {
78      "global": {
79        "branches": 100,
80        "functions": 100,
81        "lines": 100,
82        "statements": 0
83      }
84    }
85  }
86}
87