-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@eik/common",
"version": "5.1.22",
"description": "Common utilities for Eik modules",
"main": "lib/index.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"CHANGELOG.md",
"package.json",
"lib",
"types",
"eikjson.d.ts"
],
"scripts": {
"clean": "rimraf .tap node_modules types",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"schema:types": "json2ts lib/schemas/eikjson.schema.json > eikjson.d.ts",
"schema:outdated": "npm run schema:types && git diff --exit-code HEAD:eikjson.d.ts eikjson.d.ts",
"test": "tap --disable-coverage --allow-empty-coverage",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eik-lib/common.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eik-lib/common/issues"
},
"homepage": "https://github.com/eik-lib/common#readme",
"dependencies": {
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"glob": "13.0.6",
"is-glob": "4.0.3",
"mime-types": "3.0.2",
"semver": "7.7.4",
"validate-npm-package-name": "7.0.2"
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "7.28.6",
"@eik/eslint-config": "1.0.25",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.14",
"@eik/typescript-config": "1.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/is-glob": "4.0.4",
"@types/semver": "7.7.1",
"@types/validate-npm-package-name": "4.0.2",
"eslint": "9.39.3",
"express": "5.2.1",
"fastify": "5.7.4",
"json-schema-to-typescript": "15.0.4",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"semantic-release": "25.0.3",
"stoppable": "1.1.0",
"tap": "21.5.0",
"typescript": "5.9.3"
}
}