-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "functio",
"version": "0.2.0",
"description": "A set of functional tools.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --build",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint src --cache --report-unused-disable-directives --ext .ts",
"postinstall": "husky install",
"prepublish": "npm run build"
},
"author": {
"name": "balov_bohdan"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/balovbohdan/functio/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/balovbohdan/functio"
},
"keywords": [
"fp",
"functional programming"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"current-git-branch": "^1.1.0",
"eslint": "^7.20.0",
"husky": "^5.1.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.2.2"
}
}