-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "unfun-ts",
"version": "2.0.2",
"description": "Practical helpers to unfunctionalize fp-ts types",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "tsc -b tsconfig.build.json",
"build:mjs": "tsc -b tsconfig.build-mjs.json",
"typecheck": "tsc -b",
"clean": "rimraf lib/* && rimraf mjs/*",
"format": "prettier --write \"{tests,mocks,src}/**/*.ts\"",
"format:check": "prettier --check \"{tests,mocks,src}/**/*.ts\"",
"docs": "docs-ts",
"prepublish": "yarn clean && yarn build && yarn build:mjs"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn typecheck && yarn test"
}
},
"lint-staged": {
"*.ts": [
"yarn docs",
"yarn format"
]
},
"keywords": [
"fp-ts",
"functional",
"typescript"
],
"author": "Jeff Dolle <[email protected]>",
"homepage": "https://github.com/jdolle/unfun-ts",
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.0.0"
},
"devDependencies": {
"@types/jest": "25.1.2",
"docs-ts": "0.3.4",
"fp-ts": "^2.0.0",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"ts-jest": "25.1.0",
"typescript": "3.7.5"
}
}