-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.57 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-ramda",
"version": "0.1.7",
"description": "ramda reimplemented using fp-ts",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/giogonzo/fp-ts-ramda.git"
},
"bugs": {
"url": "https://github.com/giogonzo/fp-ts-ramda/issues"
},
"homepage": "https://github.com/giogonzo/fp-ts-ramda",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"test": "npm run lint && npm run prettier-check && npm run dtslint && jest",
"prettier-write": "prettier --write \"./{src,test,dtslint}/**/*.ts\"",
"prettier-check": "prettier --list-different \"./{src,test,dtslint}/**/*.ts\"",
"dtslint": "dtslint dtslint",
"docs": "docs-ts",
"preversion": "npm run test && npm run docs",
"prepublish": "npm run build",
"lint": "tslint -p tsconfig.json src/*.ts"
},
"keywords": [
"ramda",
"fp-ts",
"typescript"
],
"author": "Giovanni Gonzaga <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/jest": "^24.0.15",
"@types/ramda": "^0.26.12",
"benchmark": "^2.1.4",
"docs-ts": "^0.2.0",
"dtslint": "github:gcanti/dtslint",
"fast-check": "^1.18.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ramda": "^0.26.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"fp-ts": "^2.0.0",
"monocle-ts": "^2.0.0"
},
"jest": {
"preset": "ts-jest"
}
}