generated from insurgent-lab/javascript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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-hex",
"description": "semantic-release plugin to publish a hex package",
"version": "2.0.0",
"author": "Pierre Cavin <[email protected]> (https://github.com/sheerlox)",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/unill-io/semantic-release-hex#readme",
"repository": {
"type": "git",
"url": "https://github.com/unill-io/semantic-release-hex.git"
},
"bugs": {
"url": "https://github.com/unill-io/semantic-release-hex/issues"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --verbose",
"test:watch": "npm run test -- --watch",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"lint:eslint": "eslint .",
"lint:prettier": "prettier ./**/*.{json,md,yml} --check",
"commitlint": "commitlint --edit",
"prepare": "husky || true"
},
"dependencies": {
"@semantic-release/error": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@eslint/js": "9.18.0",
"@insurgent/commitlint-config": "20.0.0",
"@insurgent/conventional-changelog-preset": "10.0.0",
"@jest/globals": "29.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"semantic-release": "24.2.1",
"tempy": "3.1.0"
},
"engines": {
"node": ">=18.20"
},
"files": [
"lib",
"!lib/**/*.spec.js"
],
"keywords": [
"hex",
"elixir",
"publish",
"registry",
"semantic-release",
"version"
]
}