-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.99 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.99 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "lambdata",
"version": "0.0.0",
"description": "Purely functional data structures in Typescript",
"homepage": "https://github.com/skeate/lambdata",
"scripts": {
"clean": "rimraf dist types",
"docs": "cp README.md docs/index.md && docs-ts",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.es6.json",
"test": "jest",
"prepublishOnly": "yarn build",
"prerelease": "yarn docs",
"release": "HUSKY_SKIP_HOOKS=1 standard-version --no-verify"
},
"keywords": [
"pure",
"functional",
"data",
"structures",
"typescript",
"fp",
"programming",
"okasaki"
],
"author": "Jonathan Skeate",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/prettier": "2.0.2",
"@types/rimraf": "3.0.0",
"@types/standard-version": "7.0.0",
"@yarnpkg/pnpify": "^2.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "3.2.0",
"docs-ts": "^0.5.1",
"fast-check": "^1.26.0",
"fp-ts-laws": "^0.2.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.2",
"typescript": "^3.9.6"
},
"dependencies": {
"fp-ts": "^2.7.0"
},
"files": [
"./dist/**/*.js",
"./types/**/*.d.ts"
],
"main": "./dist/lib/index.js",
"module": "./dist/es6/index.js",
"types": "./types/index.d.ts",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"maxHeaderWidth": 60,
"maxLineWidth": 72
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**/*.ts",
"!./src/index.ts"
]
}
}