-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.91 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
{
"name": "gdata-provider",
"description": "Provider for Google Calendar",
"private": true,
"type": "module",
"author": "Philipp Kewisch <mozilla@kewis.ch>",
"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"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"<rootDir>/src/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/background/libs/.*",
"<rootDir>/src/experiments/.*",
"<rootDir>/src/legacy/.*"
],
"resetMocks": true,
"restoreMocks": true,
"testMatch": [
"<rootDir>/test/jest/*.test.js"
],
"transform": {},
"verbose": true
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"build": "rm -f dist/gdata-provider.xpi; (cd src && zip -9r ../dist/gdata-provider.xpi `git ls-files | grep -v 'package\\(-lock\\)\\?.json' | grep -v eslintrc | grep -v onboarding/archive `)",
"clean": "rm -f dist/gdata-provider.xpi",
"lint": "commitlint -f origin/main && eslint"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"conventional-changelog": "^7.2.0",
"cross-env": "^10.1.0",
"eslint": "^10.0.3",
"eslint-plugin-jest": "^29.15.0",
"globals": "^17.4.0",
"ical.js": "^2.2.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "git+https://git@github.com/jefflau/jest-fetch-mock.git#800c40d9c73455281901fe527fc26fb1165cc528"
}
}