This repository has been archived by the owner on Oct 31, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "@raini/pipes",
"version": "0.0.0",
"description": "Simple and reusable pipelines for function composition.",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"fp",
"monoid",
"pipe",
"pipeline",
"middleware",
"asynchrony"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Raini-js/pipeline.git"
},
"bugs": {
"url": "https://github.com/Raini-js/pipeline/issues"
},
"homepage": "https://raini.dev/docs/pipeline",
"author": {
"email": "[email protected]",
"name": "Sergei Orlov",
"url": "https://raini.dev"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^4.2.3",
"jest": "^25.2.4",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:cover": "jest --coverage",
"format": "prettier src/**/*.ts *.md --write",
"lint:prettier": "prettier src/**/*.ts *.md --list-different",
"lint:eslint": "eslint \"src/**/*.ts\" --quiet",
"lint:tsc": "tsc --noEmit",
"lint": "npm run lint:tsc && npm run lint:prettier && npm run lint:eslint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm t"
}
}
}