-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.68 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@yookue/ts-lang-utils",
"version": "0.2.0",
"title": "TsLangUtils",
"description": "Common lang utilities for typescript",
"homepage": "https://yookue.github.io/ts-lang-utils",
"organization": "Yookue Ltd",
"private": false,
"license": "MIT",
"keywords": [
"commons-lang",
"array-utils",
"boolean-utils",
"date-utils",
"json-utils",
"map-utils",
"number-utils",
"object-utils",
"random-utils",
"regex-utils",
"string-utils",
"thread-utils",
"tree-utils"
],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/ts-lang-utils.min.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "del-cli ./dist && father build",
"build:doctor": "father doctor",
"build:watch": "father dev",
"docs:build": "typedoc --out ./docs-dist",
"docs:publish": "gh-pages -d ./docs-dist",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"test": "jest",
"test:coverage": "del-cli ./coverage && jest --coverage --coverageDirectory ./coverage"
},
"dependencies": {
"@babel/runtime": "^7.25.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@yookue/babel-plugin-remove-comment": "^0.1.3",
"@yookue/typedoc-plugin-raw-content": "^0.2.0",
"@yookue/typedoc-theme-dumi": "^0.2.0",
"del-cli": "^5.1.0",
"father": "^4.5.0",
"gh-pages": "^6.1.1",
"ts-jest": "^29.2.4",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yookue/ts-lang-utils.git"
},
"bugs": {
"url": "https://github.com/yookue/ts-lang-utils/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"collective": {
"url": "https://opencollective.com/yookue-awesome"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yookue-awesome"
},
{
"type": "individual",
"url": "https://yookue.com/public/donate"
}
],
"author": {
"name": "Yookue Ltd",
"email": "[email protected]",
"url": "https://yookue.com"
},
"contributors": [
{
"name": "David Hsing",
"email": "[email protected]",
"url": "https://github.com/davidhsing"
}
]
}