-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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": "@eik/core",
"version": "2.1.50",
"description": "Core server package",
"main": "lib/main.js",
"types": "./types/main.d.ts",
"type": "module",
"files": [
"CHANGELOG.md",
"package.json",
"lib",
"types"
],
"scripts": {
"clean": "node -e \"['.tap', 'node_modules', 'types'].forEach(d => require('fs').rmSync(d, {recursive: true, force: true}))\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "node --test 'test/**/*.js'",
"test:snapshots": "node --test --test-update-snapshots 'test/**/*.js'",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git@github.com:eik-lib/core.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@eik/common": "5.1.29",
"@eik/sink": "1.2.7",
"@eik/sink-file-system": "2.0.35",
"@eik/sink-memory": "2.0.31",
"@metrics/client": "2.5.5",
"abslog": "2.4.4",
"busboy": "1.6.0",
"http-errors": "2.0.1",
"mime": "4.1.0",
"original-url": "1.2.3",
"semver": "7.8.1",
"ssri": "14.0.0",
"tar": "7.5.15"
},
"devDependencies": {
"@eik/eslint-config": "2.0.7",
"@eik/prettier-config": "1.0.2",
"@eik/semantic-release-config": "1.0.17",
"@eik/typescript-config": "1.0.2",
"@types/readable-stream": "4.0.23",
"eslint": "10.4.0",
"mkdirp": "3.0.1",
"npm-run-all2": "9.0.1",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"typescript": "6.0.3"
}
}