-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.26 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "tsbuf",
"version": "0.2.1",
"description": "Generate TypeScript enum and interface with proto buffer.",
"main": "dist/index.js",
"module": "esm/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./esm/index.js"
},
"bin": "tsbuf",
"scripts": {
"postinstall": "husky install",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "rimraf dist && gulp build copy",
"build:esm": "rimraf esm && gulp build:esm copy:esm",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch --notify",
"test:ci": "jest --coverage"
},
"lint-staged": {
"*.test.ts": [
"eslint --fix --color --cache --quiet"
],
"*.ts": [
"eslint --fix --color --cache --quiet"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Means88/tsbuf.git"
},
"keywords": [
"protobuf",
"parser",
"typescript"
],
"author": "Means88",
"license": "MIT",
"bugs": {
"url": "https://github.com/Means88/tsbuf/issues"
},
"homepage": "https://github.com/Means88/tsbuf#readme",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/jest": "^28.1.7",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.12.0",
"@types/pegjs": "^0.10.1",
"@types/prettier": "^2.7.0",
"chai": "^4.2.0",
"eslint": "^8.22.0",
"eslint-config-green": "^0.2.0",
"gulp": "4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"np": "^7.6.2",
"rimraf": "^2.6.2",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"dependencies": {
"chalk": "^2.4.1",
"execute-me": "^0.2.0",
"file": "^0.2.2",
"mkdirp": "^0.5.1",
"pegjs": "^0.10.0",
"prettier": "^2.7.1"
},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"esm",
"tsbuf"
]
}