-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.57 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
{
"private": true,
"name": "ts-transformer-properties-rename",
"version": "0.16.0",
"description": "A TypeScript custom transformer which renames internal properties of the project",
"main": "dist/transformer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/timocov/ts-transformer-properties-rename.git"
},
"files": [
"dist/"
],
"keywords": [
"custom-transformer",
"minify",
"rename",
"transformer",
"typescript"
],
"author": "Evgeniy Timokhov",
"license": "MIT",
"readme": "README.md",
"bugs": {
"url": "https://github.com/timocov/ts-transformer-properties-rename/issues"
},
"homepage": "https://github.com/timocov/ts-transformer-properties-rename",
"peerDependencies": {
"typescript": ">=4.3.0 || >=5.0.0-beta"
},
"devDependencies": {
"@types/chai": "~4.3.3",
"@types/mocha": "~10.0.0",
"@types/node": "~14.18.26",
"@typescript-eslint/eslint-plugin": "~5.40.1",
"@typescript-eslint/parser": "~5.40.1",
"chai": "~4.3.6",
"eslint": "~8.26.0",
"eslint-plugin-deprecation": "~1.3.2",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-unicorn": "~44.0.0",
"mocha": "~10.1.0",
"npm-run-all": "~4.1.5",
"rimraf": "~3.0.2",
"ts-compiler": "npm:[email protected]",
"ts-node": "~10.9.1",
"typescript": "~4.8.4"
},
"scripts": {
"clean": "rimraf lib/ dist/",
"build": "node ./node_modules/ts-compiler/bin/tsc -p .",
"lint": "eslint ./",
"test": "mocha tests/functional-test-cases.ts",
"verify": "npm-run-all -p build lint test"
}
}