-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@detachhead/ts-helpers",
"version": "16.2.0",
"files": [
"dist",
"src",
"tsconfig.base.json"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest --detectOpenHandles",
"lint:check": "eslint .",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"build": "rimraf ./dist && tsc -p src/tsconfig.json",
"typecheck:config-files": "tsc -p tsconfig.json",
"build-and-lib-check": "npm run build && tsc -p tsconfig.lib-check.json",
"check": "npm run typecheck:config-files && npm run build-and-lib-check && npm run lint:check && npm run format:check && npm run test",
"bump": "npm version"
},
"keywords": [],
"author": "detachhead",
"license": "ISC",
"description": "various typescript helper functions and utility types",
"repository": {
"type": "git",
"url": "https://github.com/DetachHead/ts-helpers.git"
},
"dependencies": {
"@types/lodash": "4.14.195",
"date-fns": "2.21.1",
"is-ci": "2.0.0",
"lodash": "^4.17.21",
"ordinal": "1.0.3",
"throw-expression": "1.0.2",
"ts-is-present": "1.2.1",
"ts-toolbelt": "9.6.0",
"tsdef": "0.0.14",
"utility-types": "3.10.0"
},
"devDependencies": {
"@detachhead/eslint-config": "^1.2.2",
"@jest/types": "^29.6.1",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/assert": "^1.5.6",
"@types/eslint": "^8.4.6",
"@types/jest": "^29.5.3",
"@types/node": "^20",
"@types/power-assert": "^1.5.3",
"babel-preset-power-assert": "^3.0.0",
"espower-typescript": "^9.0.2",
"jest": "^29.6.1",
"power-assert": "^1.6.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typed-nodejs-assert": "^1.1.0",
"typescript": "^5.2.2"
},
"//": "https://github.com/trivago/prettier-plugin-sort-imports/issues/204#issuecomment-1431287240",
"overrides": {
"@trivago/prettier-plugin-sort-imports": {
"@babel/core": "^7.21.8",
"@babel/parser": "^7.21.8",
"@babel/traverse": "^7.21.5"
},
"typescript": "$typescript"
},
"engines": {
"node": ">=16.6.0"
}
}