-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "ugly-email-extension",
"version": "4.1.2",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -R dist",
"build": "parcel build src/uglyemail.ts src/background.ts src/loader.ts",
"dev": "parcel watch src/uglyemail.ts src/background.ts src/loader.ts",
"dev:test": "npx jest --watch --passWithNoTests",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --passWithNoTests",
"lint": "eslint . --ext .ts"
},
"staticFiles": {
"staticPath": "assets",
"watcherGlob": "**"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OneClickLab/ugly-email-extension.git"
},
"author": "Sonny T.",
"license": "ISC",
"bugs": {
"url": "https://github.com/OneClickLab/ugly-email-extension/issues"
},
"homepage": "https://uglyemail.com",
"dependencies": {
"gmail-js": "^1.1.12",
"jquery": "^4.0.0-beta"
},
"devDependencies": {
"@types/chrome": "^0.0.262",
"@types/jest": "^26.0.19",
"@types/jquery": "^3.5.29",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"fake-indexeddb": "^3.1.2",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"overrides": {
"gmail-js": {
"jquery": "^4.0.0-beta"
}
}
}