-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "semantic-release-hackage",
"version": "0.0.0",
"description": "A semantic-release plugin to publish Haskell packages to Hackage",
"repository": "[email protected]:stackbuilders/semantic-release-hackage.git",
"homepage": "https://github.com/stackbuilders/semantic-release-hackage",
"bugs": "https://github.com/stackbuilders/semantic-release-hackage/issues",
"author": "Stack Builders <[email protected]> (https://github.com/stackbuilders)",
"license": "MIT",
"keywords": [
"semantic-release",
"hackage",
"haskell"
],
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"compile": "tsc",
"lint": "eslint .",
"release": "semantic-release",
"test": "NODE_ENV=test mocha"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.6.7",
"tslib": "^2.6.2"
},
"devDependencies": {
"@assertive-ts/core": "^2.0.0",
"@types/mocha": "^10.0.6",
"@types/semantic-release": "^20.0.6",
"@types/signale": "^1.4.7",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-sonarjs": "^0.23.0",
"mocha": "^10.2.0",
"semantic-release": "^23.0.0",
"semantic-release-yarn": "^3.0.2",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"semantic-release": ">=22.0.0"
},
"peerDependenciesMeta": {
"semantic-release": {
"optional": false
}
},
"publishConfig": {
"access": "public",
"provenance": true
}
}