-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "@debut/types",
"version": "4.1.2",
"publishConfig": {
"access": "public"
},
"description": "Common Debut Typescript Typings for enterprise and community versions",
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"scripts": {
"build": "tsc",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"author": "Dmitry Yurov",
"license": "Apache-2.0",
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"git-format-staged": "^3.0.0",
"husky": "^4.2.5",
"prettier": "^2.6.2",
"typescript": "^4.7.3"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --stdin --stdin-filepath \"{}\"' '*.ts' '*.json'"
}
}
}