-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
73 lines (73 loc) · 2.29 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
{
"name": "fp-ts-contrib",
"version": "0.1.29",
"description": "A community driven utility package for fp-ts",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"tsc": "tsc",
"lint": "tslint -p tsconfig.tslint.json",
"jest-clear-cache": "jest --clearCache",
"jest": "jest",
"prettier": "prettier --list-different \"./{src,test,examples,scripts}/**/*.ts\"",
"fix-prettier": "prettier --write \"./{src,test,examples,scripts}/**/*.ts\"",
"test": "npm run lint && npm run prettier && npm run dtslint && npm run jest-clear-cache && 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",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"dtslint": "dtslint dtslint",
"mocha": "mocha -r ts-node/register test/*.ts",
"docs": "docs-ts",
"import-path-rewrite": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts-contrib.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/fp-ts-contrib/issues"
},
"homepage": "https://github.com/gcanti/fp-ts-contrib",
"peerDependencies": {
"fp-ts": "^2.1.2"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/glob": "^7.1.3",
"@types/jest": "^23.3.14",
"@types/node": "^12.7.12",
"benchmark": "^2.1.4",
"docs-ts": "^0.6.9",
"doctoc": "^1.4.0",
"dtslint": "github:gcanti/dtslint",
"fp-ts": "^2.8.2",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^24.9.0",
"mocha": "^5.2.0",
"prettier": "^2.0.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.6.2"
},
"tags": [
"typescript",
"fp-ts",
"functional-programming"
],
"keywords": [
"typescript",
"fp-ts",
"functional-programming"
]
}