-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.5 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
60
{
"name": "@eik/core",
"version": "1.4.3",
"description": "Core server package",
"main": "lib/main.js",
"types": "./types/main.d.ts",
"type": "module",
"files": [
"CHANGELOG.md",
"package.json",
"lib",
"types"
],
"scripts": {
"clean": "rimraf .tap node_modules types",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --disable-coverage --allow-empty-coverage",
"test:snapshots": "tap --snapshot",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@eik/common": "4.1.1",
"@eik/sink": "1.2.5",
"@eik/sink-file-system": "1.0.1",
"@eik/sink-memory": "1.1.2",
"@metrics/client": "2.5.4",
"abslog": "2.4.4",
"busboy": "1.6.0",
"http-errors": "2.0.0",
"mime": "3.0.0",
"original-url": "1.2.3",
"semver": "7.6.3",
"ssri": "10.0.6",
"tar": "6.2.1",
"unique-slug": "4.0.0"
},
"devDependencies": {
"@eik/eslint-config": "1.0.4",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/typescript-config": "1.0.0",
"@types/readable-stream": "4.0.18",
"eslint": "9.13.0",
"form-data": "4.0.1",
"mkdirp": "3.0.1",
"node-fetch": "3.3.2",
"npm-run-all2": "5.0.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.1.2",
"tap": "18.8.0",
"typescript": "5.5.4"
}
}