-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
{
"name": "materialize-ts-function",
"version": "1.0.0",
"description": "A simple cli command to materialize the response of a typescript async function during build time",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": "build/src/bin/cli.js",
"files": [
"build/src"
],
"keywords": [
"materialize",
"stackables"
],
"scripts": {
"prepack": "tsc",
"test": "jest --runInBand",
"semantic-release": "semantic-release -b main"
},
"repository": {
"type": "git",
"url": "https://github.com/stackables/materialize-ts-function.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackables/materialize-ts-function/issues"
},
"homepage": "https://github.com/stackables/materialize-ts-function#readme",
"dependencies": {
"lodash": "^4.17.21",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.5",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5"
}
}