forked from KieSun/per-moniteur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "per-moniteur",
"version": "0.1.0",
"description": "一个方便获取各类性能指标及 Web Vitals 的库",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"clean": "rm -rf ./dist",
"dev": "tsc -w",
"build": "yarn clean && tsc",
"prepare": "yarn build",
"check-types": "tsc --noEmit",
"check-formatting": "prettier --check '**/*.{js,json,md,tsx,ts}'"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KieSun/per-moniteur.git"
},
"keywords": [],
"author": "KieSun",
"license": "MIT",
"bugs": {
"url": "https://github.com/KieSun/per-moniteur/issues"
},
"homepage": "https://github.com/KieSun/per-moniteur#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.19",
"eslint": "^7.15.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,tsx,ts}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"chalk": "^4.1.0"
}
}