-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.09 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
{
"name": "uni-flatten",
"version": "1.6.4",
"description": "Flattens a nested object, or convert it back **perfectly**. ",
"author": "Nikaple Zhou",
"license": "MIT",
"packageManager": "[email protected]",
"url": "https://github.com/Nikaple/uni-flatten",
"homepage": "https://github.com/Nikaple/uni-flatten",
"files": [
"index.js",
"index.d.ts",
"index.ts",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Nikaple/uni-flatten"
},
"bugs": {
"url": "https://github.com/Nikaple/uni-flatten/issues"
},
"scripts": {
"prepare": "husky install",
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"doc": "typedoc src/index.ts --tsconfig tsconfig.build.json",
"lint": "eslint src/**/*.ts --fix",
"lint:dontfix": "eslint src/**/*.ts",
"format": "prettier --write .",
"format:dontfix": "prettier --check .",
"prepublish:npm": "npm run build",
"prerelease": "npm run build",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@latipun7/commitlintrc": "1.1.3",
"@latipun7/releaserc": "^2.1.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"semantic-release": "^24.0.0",
"typedoc": "0.27.6",
"typescript": "5.7.2",
"vitest": "2.1.2"
},
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
},
"commitlint": {
"extends": [
"@latipun7/commitlintrc"
]
},
"release": {
"extends": [
"@latipun7/releaserc"
]
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
}
}