-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "@eik/node-client",
"version": "2.1.1",
"description": "Utilities for working with assets and import maps on an Eik server",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
},
"files": [
"CHANGELOG.md",
"package.json",
"LICENSE",
"src",
"types"
],
"scripts": {
"clean": "node --input-type=module --eval \"import{rmSync}from'node:fs';['.tap','node_modules','types'].forEach(p=>rmSync(p,{recursive:true,force:true}))\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "node --test 'test/*.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/node-client.git"
},
"keywords": [
"eik"
],
"author": "Finn.no",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/node-client/issues"
},
"homepage": "https://github.com/eik-lib/node-client#readme",
"dependencies": {
"@eik/common": "5.1.31",
"abslog": "2.4.4"
},
"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/node": "25.9.1",
"eslint": "10.4.1",
"npm-run-all2": "9.0.1",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"typescript": "6.0.3"
}
}