-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 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": "reliza",
"version": "0.0.1",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest --detectOpenHandles",
"build": "node build.js",
"lint": "npx tsc",
"release": "npm pack --pack-destination=release",
"build:release": "npm run lint && npm run build && npm run release",
"build:test": "npm run lint && npm run build && npm run release && npm install file:release/reliza-0.0.1.tgz"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"esbuild": "^0.20.2",
"globals": "^15.0.0",
"jest": "^29.5.0",
"prettier-plugin-organize-imports": "^4.1.0",
"reliza": "file:release/reliza-0.0.1.tgz",
"ts-arithmetic": "^0.1.1",
"ts-jest": "^29.1.0",
"tsx": "^4.7.1",
"typescript": "^5.6.3"
},
"dependencies": {
"mergician": "^2.0.2"
}
}