-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "tommasoamici-typescript-template",
"version": "0.2.2",
"description": "",
"keywords": [],
"homepage": "https://github.com/TommasoAmici/typescript-template#readme",
"bugs": {
"url": "https://github.com/TommasoAmici/typescript-template/issues",
"email": "me@tommasoamici.com"
},
"repository": {
"type": "git",
"url": "https://github.com/TommasoAmici/typescript-template.git"
},
"license": "MIT",
"author": "Tommaso Amici",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
"format": "prettier --write .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,yml,json}": "prettier --write"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "16.18.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"pinst": "2.1.6",
"prettier": "2.7.1",
"ts-jest": "27.1.5",
"typescript": "4.8.4"
},
"engines": {
"node": ">=12.13.0"
}
}