-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.51 KB
/
package.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.51 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
{
"name": "@powerkernel/common",
"version": "0.2.18",
"description": "Power Kernel common libarary",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"update": "npx npm-check-updates",
"upgrade": "npx npm-check-updates -u && npm i",
"release": "npx standard-version && git push --follow-tags origin main",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"build": "npm run clean && tsc",
"clean": "del ./dist/*",
"lint": "eslint ./src --ext .ts --fix",
"prepare": "husky install"
},
"keywords": [
"power",
"kernel",
"common"
],
"author": {
"name": "Harry Tang",
"email": "harry@powerkernel.com",
"url": "https://powerkernel.com"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "29.5.14",
"@types/slug": "5.0.9",
"@types/uuid": "9.0.8",
"@types/validator": "13.15.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"del-cli": "5.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "2.8.8",
"ts-jest": "29.4.6",
"typescript": "4.9.5"
},
"dependencies": {
"@types/node": "^18.11.9",
"change-case": "4.1.2",
"slug": "8.2.3",
"uuid": "9.0.1",
"validator": "13.15.26"
}
}