-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "@falbricate/base",
"version": "1.3.2",
"description": "Base Framework for Falbricate - tool for Falsa Fabrication",
"keywords": [
"mocking",
"falbricate"
],
"author": "vojtechpavlu",
"license": "MIT",
"homepage": "https://vojtechpavlu.github.io/falbricate-base/",
"repository": {
"type": "git",
"url": "https://github.com/vojtechpavlu/falbricate-base.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"cleanup": "npm run clear && npm run format",
"clear": "rimraf ./dist",
"compile": "tsc",
"dev": "ts-node src/index.ts",
"format": "prettier . --write",
"test:unit": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}