-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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-strip-const-enums",
"version": "2.0.0",
"description": "A TypeScript custom transformer which strips const enums if preserveConstEnums is enabled and const enum isn't exported",
"main": "dist/transformer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/timocov/ts-transformer-strip-const-enums.git"
},
"files": [
"dist/"
],
"keywords": [
"const-enum",
"custom-transformer",
"preserveConstEnums",
"transformer",
"typescript"
],
"author": "Evgeniy Timokhov",
"license": "MIT",
"readme": "README.md",
"bugs": {
"url": "https://github.com/timocov/ts-transformer-strip-const-enums/issues"
},
"homepage": "https://github.com/timocov/ts-transformer-strip-const-enums",
"peerDependencies": {
"typescript": ">=5.0.0"
},
"devDependencies": {
"@types/chai": "~4.3.16",
"@types/mocha": "~10.0.6",
"@types/node": "~20.12.12",
"chai": "~5.1.1",
"mocha": "~10.4.0",
"npm-run-all": "~4.1.5",
"rimraf": "~5.0.7",
"ts-node": "~10.9.2",
"tslint": "~6.1.2",
"typescript": "~5.4.5"
},
"scripts": {
"clean": "rimraf lib/ dist/",
"build": "tsc -p .",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha tests/functional-test-cases.ts",
"verify": "npm-run-all -p build lint test"
}
}