-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "awesome-javascript",
"type": "module",
"version": "1.0.0",
"description": "手写原生js API",
"author": "",
"license": "ISC",
"homepage": "https://github.com/cuiyiming1998/awesome-javascript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cuiyiming1998/awesome-javascript.git"
},
"bugs": {
"url": "https://github.com/cuiyiming1998/awesome-javascript/issues"
},
"main": "index.js",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"commit": "git add . && cz-customizable",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.2",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitest/ui": "^0.18.0",
"commitlint": "^17.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lodash-es": "^4.17.21",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "~4.2.3",
"vitest": "^0.18.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
}
}