-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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
{
"name": "protobuf-jsx",
"version": "1.1.1",
"description": "create statically generated message object from jsx",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"prepublish": "npm run build",
"build": "tsc",
"lint": "eslint --ext ts src && tsc --noEmit",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edvardchen/protobuf-jsx.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/edvardchen/protobuf-jsx/issues"
},
"homepage": "https://github.com/edvardchen/protobuf-jsx#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^7.5.0",
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.149",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-react": "^7.18.3",
"google-protobuf": "^3.11.4",
"husky": "^1.2.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.7.4"
},
"lint-staged": {
"*.{tsx,ts}": [
"eslint"
],
"*.{ts,tsx,js,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm t"
}
},
"dependencies": {
"lodash": "^4.17.15"
}
}