-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "feedly-saved-opener",
"version": "2.0.0",
"description": "Open saved Feedly articles in batch with one click",
"scripts": {
"test": "node tests/test.js",
"build": "./build-extension.sh",
"lint": "eslint *.js popup/*.js tests/*.js",
"lint:fix": "eslint *.js popup/*.js tests/*.js --fix",
"prepare": "husky install",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/mbologna/feedly-saved-opener.git"
},
"keywords": [
"feedly",
"rss",
"firefox-extension",
"productivity"
],
"author": "Michele Bologna",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbologna/feedly-saved-opener/issues"
},
"homepage": "https://github.com/mbologna/feedly-saved-opener#readme",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@release-it/conventional-changelog": "^11.0.0",
"@eslint/js": "^10.0.0",
"eslint": "^10.1.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"release-it": "^20.0.1"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}"
},
"github": {
"release": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
},
"infile": "CHANGELOG.md"
}
}
}
}