-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
39 lines (39 loc) · 1.33 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
{
"name": "gdata-provider",
"description": "Provider for Google Calendar",
"version": "128.0.0",
"private": true,
"author": "Philipp Kewisch <[email protected]>",
"license": "MPL-2.0",
"directories": {
"test": "test"
},
"homepage": "https://github.com/kewisch/gdata-provider#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kewisch/gdata-provider.git"
},
"bugs": {
"url": "https://github.com/kewisch/gdata-provider/issues"
},
"scripts": {
"test": "action-thunderbird-tests test/xpcshell/xpcshell.ini",
"build": "rm -f dist/gdata-provider.xpi; (cd src && zip -9r ../dist/gdata-provider.xpi `git ls-files`)",
"clean": "rm -f dist/gdata-provider.xpi",
"bump": "bumper() { bump package.json \"$1\"; bump src/manifest.json \"$1\"; }; bumper",
"tag": "git tag v$(jq -r '.version' src/manifest.json)",
"lint": "commitlint -g commitlint.config.js -f origin/legacy && eslint --ext '.js,.jsm' . || true"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@stylistic/eslint-plugin": "^2.8.0",
"babel-eslint": "^10.1.0",
"bump-file": "^2.0.0",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.10.0",
"globals": "^15.9.0"
}
}