-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.62 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
{
"name": "desmos-unlocked",
"version": "1.1.2",
"description": "Browser extension for better user control of the Desmos graphing calculator configuration ",
"main": "background.js",
"scripts": {
"code:lint": "eslint '**/**/*.ts'",
"code:lint-fix": "eslint --fix '**/**/*.ts'",
"code:prettier": "prettier --write '**/**/*.{ts,js,html,css,json}'",
"code:check": "./node_modules/.bin/tsc --noEmit && prettier --check '**/**/*.{ts,js,html,css,json}' && eslint '**/**/*.ts'",
"app:chrome": "rimraf dist && cross-env BROWSER='chrome' webpack --config webpack/webpack.prod.js",
"app:chrome-dev": "cross-env BROWSER='chrome' webpack --config webpack/webpack.dev.js --watch",
"app:edge": "rimraf dist && cross-env BROWSER='edge' webpack --config webpack/webpack.prod.js",
"app:edge-dev": "cross-env BROWSER='edge' webpack --config webpack/webpack.dev.js --watch",
"app:opera": "rimraf dist && cross-env BROWSER='opera' webpack --config webpack/webpack.prod.js",
"app:opera-dev": "cross-env BROWSER='opera' webpack --config webpack/webpack.dev.js --watch",
"app:firefox": "rimraf dist && cross-env BROWSER='firefox' webpack --config webpack/webpack.prod.js",
"app:firefox-dev": "cross-env BROWSER='firefox' webpack --config webpack/webpack.dev.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidnguyen179/web-extension-boilerplate.git"
},
"keywords": [
"chrome extension",
"microsoft edge extension",
"opera extension",
"firefox addon",
"web extension",
"typescript",
"ts",
"sinon"
],
"author": "Matthew Sinclair",
"license": "MIT",
"bugs": {
"url": "https://github.com/SinclaM/desmos-unlocked/issues"
},
"homepage": "https://github.com/SinclaM/desmos-unlocked#readme",
"devDependencies": {
"@types/chrome": "0.0.193",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"copy-webpack-plugin": "^8.1.1",
"cross-env": "7.0.3",
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "5.1.1",
"typescript": "^4.2.4",
"web-ext-types": "3.2.1",
"webextension-polyfill": "^0.9.0",
"webpack": "5.18.0",
"webpack-cli": "4.4.0",
"webpack-merge": "5.7.3"
},
"dependencies": {
"git-hooks-plus": "^1.0.1",
"ts-loader": "^9.3.1"
}
}