-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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
{
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-jest": "^29.7.0",
"docdash": "^1.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^3.6.11",
"minami": "^1.2.3",
"rollup": "^2.70.1",
"vitepress": "^1.6.4"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"doc": "jsdoc dist/index.js -c config/jsdoc.json",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "jest --config=config/jest.config.js",
"test:watch": "jest --config=config/jest.config.js --watch",
"test:coverage": "jest --config=config/jest.config.js --coverage",
"prepublishOnly": "npm run test && npm run build"
},
"name": "cat-tools",
"version": "1.1.31",
"description": "JavaScript 实用工具库,提供数组、字符串、数字、时间等常用方法",
"main": "index.js",
"module": "dist/index.js",
"files": [
"index.js",
"dist/",
"src/",
"README.MD",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/CrazyStudent13/cat-tools.git"
},
"keywords": [
"javascript",
"utils",
"utilities",
"array",
"string",
"number",
"time",
"validation",
"tools"
],
"author": "crazystudent13",
"license": "ISC",
"bugs": {
"url": "https://github.com/CrazyStudent13/cat-tools/issues"
},
"homepage": "https://github.com/CrazyStudent13/cat-tools#readme",
"engines": {
"node": ">=14.0.0"
}
}