-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "stream-lens",
"private": true,
"version": "1.3.2",
"description": "Browser extension for displaying live stream status for Twitch",
"workspaces": [
"packages/**"
],
"scripts": {
"build": "esbuild background/index.js popup/index.jsx options/index.jsx --bundle --outdir=build --format=esm --minify",
"dev": "esbuild background/index.js popup/index.jsx options/index.jsx --sourcemap --bundle --outdir=build --format=esm --sourcemap=inline --watch",
"test": "npm run test:lint && npm run test:types && npm run test:unit",
"clean": "rm -rf build",
"prepare": "npm run clean && npm run build",
"test:lint": "eslint .",
"test:types": "tsc",
"test:unit": "mocha '{background,options,packages,popup}/**/test/*'",
"prebundle": "npm run prepare",
"bundle": "npm-pack-zip"
},
"author": {
"name": "Andrew Duthie",
"email": "[email protected]",
"url": "https://andrewduthie.com"
},
"repository": {
"type": "git",
"url": "https://github.com/aduth/StreamLens.git"
},
"license": "GPL-3.0-or-later",
"files": [
"_locales",
"build",
"fonts",
"images",
"node_modules/webextension-polyfill/dist/browser-polyfill.js",
"auth.js",
"background.html",
"common.css",
"config.js",
"manifest.json",
"options.css",
"options.html",
"popup.css",
"popup.html",
"!.DS_Store",
"!test"
],
"dependencies": {
"lodash-es": "^4.17.21",
"preact": "^10.12.1",
"unistore": "^3.5.2",
"unistore-browser-sync": "^1.1.0",
"webextension-polyfill": "^0.10.0"
},
"bundledDependencies": [
"webextension-polyfill"
],
"devDependencies": {
"@aduth/eslint-config": "^4.4.1",
"@testing-library/dom": "^8.20.0",
"@testing-library/preact": "^3.2.3",
"@types/chai": "^4.3.4",
"@types/lodash-es": "^4.17.6",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chai": "^4.3.7",
"esbuild": "^0.17.7",
"esbuild-esm-loader": "^0.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"mocha": "^10.2.0",
"npm-pack-zip": "^1.3.0",
"prettier": "^2.8.4",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"typescript": "^4.9.5",
"undom": "^0.4.0",
"web-ext-types": "^3.2.1"
}
}