-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@kirekov/try-monad",
"version": "0.0.0",
"description": "Typescript Try monad",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "node ./cleanDist.js",
"lint": "eslint ./src --ext .ts,.tsx,.js,.jsx --max-warnings=0",
"test": "jest",
"prebuild": "run-s clean lint test",
"build": "tsc --build tsconfig.json",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonHarmonicMinor/try-monad.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimonHarmonicMinor/try-monad/issues"
},
"homepage": "https://github.com/SimonHarmonicMinor/try-monad#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/exec": "^5.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unicorn": "^34.0.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"typescript": "^4.1.2"
}
}