-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@falbricate/geography",
"version": "1.0.1",
"description": "Geographical data plugin for Falbricate",
"repository": {
"type": "git",
"url": "https://github.com/vojtechpavlu/falbricate-geography.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "vojtechpavlu",
"license": "MIT",
"keywords": [
"mocking",
"falrbicate",
"geography"
],
"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 --config unit-test.config.js",
"test:integration": "npm run --prefix integration test"
},
"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.4"
},
"dependencies": {
"@falbricate/base": "^1.2.12"
}
}