-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "ts-transformer-optimize-const-enum",
"version": "0.1.2",
"description": "A TypeScript transformer that optimize exported const enum into object literal",
"main": "dist/cjs/transform.js",
"module": "dist/ejs/transform.js",
"types": "dist/cjs/transform.d.ts",
"repository": "[email protected]:Fonger/ts-transformer-optimize-const-enum.git",
"author": "Fonger <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"typescript-transformer",
"transformer",
"optimize",
"const-enum",
"object-literal",
"ttypescript"
],
"scripts": {
"build": "rm -rf dist && npm run build:cjs && npm run build:ejs",
"build:cjs": "tsc --outDir dist/cjs --declaration",
"build:ejs": "tsc --outDir dist/ejs --module es6",
"test": "jest --coverage",
"lint": "dprint check && eslint .",
"format": "dprint fmt"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"dprint": "^0.22.0",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"typescript": ">=3.2.2"
}
}