-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "@eik/semantic-release",
"version": "2.0.2",
"description": "Semantic release plugin for Eik",
"main": "lib/main.js",
"types": "./types/main.d.ts",
"type": "module",
"files": [
"lib",
"types"
],
"scripts": {
"clean": "rimraf .nyc_output .tap node_modules types",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "tap --disable-coverage --allow-empty-coverage",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@eik/cli": "2.0.39",
"@eik/common": "4.1.1",
"aggregate-error": "5.0.0"
},
"devDependencies": {
"@eik/eslint-config": "1.0.7",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/typescript-config": "1.0.0",
"eslint": "9.16.0",
"npm-run-all2": "5.0.2",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"tap": "21.0.1",
"typescript": "5.7.2"
}
}