-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@southworks/codeverter",
"version": "2.1.0",
"description": "Convert TypeScript code into different languages",
"main": "lib/lib.js",
"bin": {
"cdv": "lib/index.js"
},
"keywords": [
"typescript",
"ast",
"code",
"convert"
],
"repository": {
"type": "git",
"url": "git+https://github.com/southworks/codeverter.git"
},
"bugs": {
"url": "https://github.com/southworks/codeverter/issues"
},
"homepage": "https://github.com/southworks/codeverter#readme",
"files": [
"lib/"
],
"scripts": {
"build": "npx tsc",
"build:prod": "npx tsc --project tsconfig.prod.json",
"test": "npx jest"
},
"author": "southworks uk ltd",
"contributors": [
{
"name": "Micaela Ramirez",
"email": "[email protected]"
},
{
"name": "Jesus Caceres",
"email": "[email protected]"
},
{
"name": "Agustin Seifert",
"email": "[email protected]"
},
{
"name": "Santiago Calle",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"typescript": "4.7.4",
"ejs": "3.1.8"
},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/ejs": "3.1.1",
"jest": "28.0.0",
"ts-jest": "28.0.8"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
}
}
}