-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.43 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
57
58
59
{
"name": "@podium/utils",
"version": "5.4.0",
"description": "Common generic utility methods shared by @podium modules.",
"type": "module",
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"podium"
],
"repository": {
"type": "git",
"url": "git@github.com:podium-lib/utils.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"dist",
"lib",
"types"
],
"main": "./lib/main.js",
"types": "./types/main.d.ts",
"scripts": {
"bench": "node benchmark/benchmark.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --no-check-coverage",
"test:snapshots:update": "tap --snapshot",
"types": "run-s types:tsc types:test",
"types:tsc": "tsc --declaration --emitDeclarationOnly",
"types:test": "tsc --project tsconfig.test.json"
},
"devDependencies": {
"@podium/eslint-config": "1.0.5",
"@podium/schemas": "5.1.0",
"@podium/semantic-release-config": "2.0.0",
"@podium/typescript-config": "1.0.0",
"@types/node": "22.10.3",
"benchmark": "2.1.4",
"eslint": "9.17.0",
"npm-run-all2": "5.0.2",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"tap": "16.3.10",
"typescript": "5.7.2"
},
"dependencies": {
"camelcase": "8.0.0"
}
}