-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 910 Bytes
/
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
{
"name": "pb-parser",
"version": "0.1.6",
"homepage": "https://github.com/Zzzen/pb-parser",
"description": "",
"main": "./build/index.js",
"scripts": {
"prepublishOnly": "tsc",
"test": "jest"
},
"types": "build/index.d.ts",
"keywords": ["protobuf", "protocol-buffers", "parser", "typescript"],
"author": "Zzzen",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.10",
"babel-jest": "^26.3.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
}
}