-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 799 Bytes
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
{
"name": "@theomessin/ts-builder",
"version": "0.1.8",
"description": "TypeScript build system support for Node.js",
"keywords": [
"build",
"mocha",
"node",
"project",
"references",
"tsc",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/theomessin/ts-builder.git"
},
"license": "MIT",
"author": "Theodore Messinezis",
"exports": {
"./register": "./dist/register.js"
},
"files": [
"/dist"
],
"scripts": {
"build": "tsc --project tsconfig.json"
},
"dependencies": {
"source-map-support": "^0.5.20"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@types/source-map-support": "^0.5.4",
"typescript": "^4.4.3"
},
"peerDependencies": {
"typescript": ">=3.6.0"
}
}