forked from timocov/ts-transformer-minify-privates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"private": true,
"name": "ts-transformer-minify-privates",
"version": "0.3.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": ">=2.9.1"
},
"devDependencies": {
"@types/chai": "~4.1.7",
"@types/mocha": "~5.2.7",
"@types/node": "~12.0.4",
"chai": "~4.2.0",
"clean-publish": "~1.1.2",
"mocha": "~6.2.2",
"ts-node": "~8.4.1",
"tslint": "~5.20.0",
"typescript": "~3.6.4"
},
"scripts": {
"tsc": "tsc -p .",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha tests/functional-test-cases.ts"
}
}