-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "@thbnpm/utils",
"version": "1.0.3",
"description": "utils 函数库, 封装一些常用的工具函数。",
"main": "lib/main.umd.js",
"module": "lib/main.esm.js",
"typings": "lib/types/modules/index.d.ts",
"files": [
"lib",
"package.json",
"README.md"
],
"scripts": {
"build": "rollup --config && pnpm run doc",
"test": "jest --no-cache --collect-coverage --onlyChanged",
"doc": "typedoc --options typedoc.json && pnpm run doc:gh-fix",
"doc:gh-fix": "touch docs/.nojekyll"
},
"keywords": [
"thb",
"utils",
"lodash",
"es"
],
"author": "THB",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"rollup": "^2.33.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typedoc": "^0.19.2",
"typedoc-neo-theme": "^1.0.10",
"typescript": "^4.0.5"
},
"repository": "https://github.com/thbgh/thb-utils.git",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}