-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.39 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
{
"private": true,
"name": "ts-transformer-minify-privates",
"version": "1.0.0",
"description": "A TypeScript custom transformer which minify names of private class members",
"main": "dist/transformer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/timocov/ts-transformer-minify-privates.git"
},
"files": [
"dist/"
],
"keywords": [
"typescript",
"transformer",
"minifying"
],
"author": "Evgeniy Timokhov",
"license": "MIT",
"readme": "README.md",
"bugs": {
"url": "https://github.com/timocov/ts-transformer-minify-privates/issues"
},
"homepage": "https://github.com/timocov/ts-transformer-minify-privates#readme",
"peerDependencies": {
"typescript": ">=4.3.0 || >=5.0.0-beta"
},
"devDependencies": {
"@types/chai": "~4.3.4",
"@types/mocha": "~10.0.1",
"@types/node": "~14.18.26",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"chai": "~4.3.7",
"eslint": "~8.39.0",
"eslint-plugin-deprecation": "~1.4.1",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-unicorn": "~46.0.0",
"mocha": "~10.2.0",
"ts-compiler": "npm:[email protected]",
"ts-node": "~10.9.1",
"typescript": "~5.0.4"
},
"scripts": {
"tsc": "node ./node_modules/ts-compiler/bin/tsc -p .",
"lint": "eslint ./",
"test": "mocha tests/functional-test-cases.ts"
}
}