-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.26 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
82
83
84
85
86
87
{
"name": "@ltv/env",
"version": "3.0.0",
"description": "NodeJS Environment Utils",
"main": "dist/env.cjs.js",
"module": "dist/env.esm.js",
"typings": "dist/types/env.d.ts",
"repository": {
"url": "git@github.com:ltv/env.git"
},
"author": "Luc <luc@ltv.vn>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prebuild": "rimraf dist",
"build": "node .esbuild.js",
"postbuild": "tsc --emitDeclarationOnly --outDir dist",
"test": "jest",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"precommit": "lint-staged",
"prepush": "npm run test:prod && npm run build",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"latest-publish": "npm publish",
"latest-prepare": "standard-version --no-verify"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main",
"next"
]
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/jest": "29.4.0",
"@types/lodash.has": "^4.5.7",
"@types/lodash.trim": "^4.5.7",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"commitizen": "4.3.0",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.17.6",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"husky": "8.0.3",
"jest": "29.4.2",
"jest-config": "29.4.2",
"lint-staged": "13.1.1",
"prettier": "2.8.3",
"rimraf": "4.1.2",
"semantic-release": "19.0.5",
"standard-version": "9.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}