-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 965 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
40
41
42
43
44
45
{
"name": "extensions-ts",
"version": "0.0.11",
"description": "A modular collection of TypeScript extensions for various entities like arrays and objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./*": "./dist/*"
},
"scripts": {
"deploy": "npm install && npm run build && npm publish",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FranDepascuali/extensions-ts.git"
},
"keywords": [
"typescript",
"extensions",
"arrays",
"objects"
],
"author": "Depa",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"typescript": "5.4.5",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"@types/jest": "29.5.12"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
]
}
}