-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.77 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
{
"name": "@cats-oss/ts-proto-optimize",
"version": "0.2.0",
"description": "It's CLI tool for optimize TypeScript protobuf type-definition file.",
"homepage": "https://github.com/cats-oss/ts-proto-optimize#readme",
"bugs": {
"url": "https://github.com/cats-oss/ts-proto-optimize/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cats-oss/ts-proto-optimize.git"
},
"license": "MIT",
"author": "Cyberagent, Inc.",
"bin": {
"ts-proto-optimize": "bin/index.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"test": "jest",
"clean": "rimraf lib",
"build": "tsc -p .",
"format": "prettier --write .",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"prepublish": "npm run clean && npm run build"
},
"prettier": {
"arrowParens": "always",
"plugins": [
"prettier-plugin-packagejson"
],
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"chalk": "^4.1.1",
"change-case": "^4.1.2",
"meow": "^5.0.0",
"mkdirp": "^1.0.4",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/change-case": "^2.3.1",
"@types/jest": "^26.0.24",
"@types/meow": "^5.0.0",
"@types/mkdirp": "^1.0.2",
"@types/node": "^16.4.3",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.4"
},
"publishConfig": {
"access": "public"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run format"
}
}
}