-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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": "@perfective/common",
"version": "0.10.0",
"description": "Common types and functions for perfective development in TypeScript",
"keywords": [
"es6",
"es2015",
"typescript",
"exception",
"error chaining",
"functional programming",
"option type",
"maybe monad",
"result type",
"result monad",
"either monad"
],
"author": "Andrey Mikheychik <[email protected]>",
"homepage": "https://github.com/perfective/ts.common",
"repository": {
"type": "git",
"url": "git+https://github.com/perfective/ts.common.git"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"clean": "gulp clean",
"dist": "gulp",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:build": "npm run lint:eslint:build && npm run lint:prettier:build",
"lint:eslint": "eslint --fix ./",
"lint:eslint:build": "eslint --max-warnings 0 ./",
"lint:prettier": "prettier --write .",
"lint:prettier:build": "prettier --check .",
"test": "jest",
"test:build": "jest --clearCache && jest --collectCoverage"
},
"devDependencies": {
"@asciidoctor/gulp-asciidoctor": "^2.2.5",
"@jest/globals": "^29.7.0",
"@perfective/build": "~0.17.0",
"@perfective/eslint-config": "0.29.2",
"@types/jest": "^29.5.14",
"eslint-plugin-jest": "~28.10.0",
"gulp": "^5.0.0",
"jest": "^29.7.0",
"prettier": "~3.4.2",
"ts-jest": "^29.2.5",
"typescript": "~5.7.2"
}
}