-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.01 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@eik/common",
"version": "5.0.0",
"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.17.1",
"ajv-formats": "3.0.1",
"glob": "11.0.0",
"is-glob": "4.0.3",
"mime-types": "2.1.35",
"semver": "7.6.3",
"validate-npm-package-name": "6.0.0"
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@eik/eslint-config": "1.0.5",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/typescript-config": "1.0.0",
"@hapi/hapi": "21.3.12",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/glob": "8.1.0",
"@types/is-glob": "4.0.4",
"@types/semver": "7.5.8",
"@types/validate-npm-package-name": "4.0.2",
"eslint": "9.16.0",
"express": "4.21.1",
"fastify": "5.1.0",
"json-schema-to-typescript": "15.0.3",
"npm-run-all2": "7.0.1",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"stoppable": "1.1.0",
"tap": "21.0.1",
"typescript": "5.6.3"
}
}