-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"name": "fp-ts-cont",
"version": "0.0.1",
"description": "An implementation of the continuation monad for fp-ts",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts test/**/*.ts",
"prettier": "prettier --list-different \"{src,test}/**/*.ts\"",
"prettier-fmt": "prettier --write \"{src,test}/**/*.ts\"",
"safety-check": "yarn prettier && yarn lint && yarn test",
"jest": "jest --ci --passWithNoTests",
"test": "yarn prettier && yarn lint && yarn jest && yarn docs",
"test-via-mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.ts",
"clean": "rm -rf lib/*",
"build": "yarn clean && tsc",
"prepublish": "yarn safety-check && yarn build",
"docs": "docs-ts"
},
"repository": {
"type": "git",
"url": "https://github.com/joshburgess/fp-ts-cont.git"
},
"author": "Josh Burgess <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshburgess/fp-ts-cont/issues"
},
"homepage": "https://github.com/joshburgess/fp-ts-cont",
"dependencies": {
"fp-ts": "^2.0.5"
},
"devDependencies": {
"@types/mocha": "2.2.38",
"@types/node": "7.0.4",
"docs-ts": "^0.1.0",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "3.2.0",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"tags": [
"fp-ts",
"functional programming",
"typescript"
],
"keywords": [
"fp-ts",
"continuation",
"continuation monad",
"Cont",
"ContT",
"functional programming",
"monad",
"MonadCont",
"monad transformer",
"mtl",
"transformer",
"typescript"
]
}