This repository has been archived by the owner on Aug 20, 2023. It is now read-only.
generated from Quantumlyy/template-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.72 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
{
"name": "@byters/bitters",
"description": " ",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"author": {
"email": "yo@quantumlytangled.com",
"name": "QuantumlyTangled",
"url": "https://quantumlytangled.com"
},
"license": "BSD-3-Clause",
"scripts": {
"prepublish": "yarn build",
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"test": "jest",
"test:coverage": "jest --coverage",
"sversion": "yarn standard-version"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@jest/types": "^26.6.1",
"@quantumly/eslint-config": "^1.1.0",
"@types/jest": "^26.0.15",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-circus": "^26.6.1",
"lint-staged": "^10.4.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=15.0.1",
"npm": ">=6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"!dist/.tsbuildinfo"
],
"publishConfig": {
"access": "public"
}
}