-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ts-utily",
"version": "1.2.4",
"description": "Typescript utils library",
"homepage": "https://github.com/kemotx90/ts-utily#readme",
"main": "dist/ts-utily.js",
"types": "dist/ts-utily.d.ts",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"live:test": "npx jest --watch",
"test": "npx jest --coverage",
"build": "rimraf dist && tsc && rollup -c",
"publish": "npm publish",
"git:publish": "git add . && git commit -m && git remote -v && git push origin main",
"documentation": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [
"typescript",
"utils",
"utility",
"string",
"number",
"common",
"collection",
"conversion",
"sort",
"object",
"date",
"file",
"angular utils",
"react utils",
"typescript utils"
],
"author": "Piero Solinas & Daniele Carlini",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.5",
"typedoc": "^0.26.2",
"typedoc-plugin-markdown": "^4.1.0",
"typescript": "^5.5.2"
}
}