-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 876 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
39
{
"name": "@dhmk/utils",
"version": "5.0.0",
"description": "A collection of frequently used functions and primitives",
"keywords": [
"utils",
"tools",
"functions",
"helpers",
"misc"
],
"license": "MIT",
"repository": "github:dhmk083/dhmk-utils",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib",
"esm"
],
"scripts": {
"preversion": "yarn test && yarn build",
"version": "git add -A",
"postversion": "git push && git push --tags",
"clean": "rm -rf lib esm",
"build": "yarn clean && tsc && tsc -m esnext --outDir esm",
"test": "yarn clean && jest"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.5.4"
},
"jest": {
"preset": "ts-jest"
}
}