-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tiny-lorem",
"version": "0.1.9",
"type": "module",
"description": "A library of modern JavaScript tools for generating mock data. 0 dependencies",
"main": "lib/index.cjs",
"module": "lib/index.js",
"browser": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"prepare": "husky install",
"build": "tsup",
"dev": "tsup --watch",
"lint:fix": "npx eslint src/**/*.ts --config .eslintrc --fix",
"test:unit": "jest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "rimraf docs/.vitepress/dist && vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"lint-staged": {
"src/**/*.{js,ts,tsx,json,md}": [
"eslint --config .eslintrc"
]
},
"keywords": [
"mock",
"loremjs",
"lorem",
"tiny-lorem"
],
"homepage": "https://github.com/CiroLee/tiny-lorem",
"repository": {
"type": "git",
"url": "https://github.com/CiroLee/tiny-lorem.git"
},
"bugs": {
"url": "https://github.com/CiroLee/tiny-lorem/issues"
},
"engines": {
"node": ">=16"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"author": "cirolee<ciromail@126.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"commitlint": "^19.8.1",
"eslint": "8.57.1",
"husky": "8.0.3",
"jest": "^30.0.2",
"jest-environment-jsdom": "30.0.0-beta.3",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitepress": "^1.6.3",
"vitepress-plugin-group-icons": "^1.6.1"
}
}