This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
forked from lmichelin/open-github-links-in-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.86 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
{
"name": "open-github-links-in-ide",
"version": "1.1.10",
"description": "Open GitHub files links in your IDE",
"geckoId": "{f1402343-719c-4b96-bc4f-f7bdcd7f796c}",
"scripts": {
"lint": "eslint --max-warnings 0 --ignore-path .gitignore . && prettier --ignore-path .gitignore -c **/*.{html,css,md,json,yml}",
"lint:fix": "eslint --max-warnings 0 --fix --ignore-path .gitignore . ; prettier --ignore-path .gitignore --write **/*.{html,css,md,json,yml}",
"type-check": "tsc --noEmit",
"cypress:open": "cypress open",
"test:chrome": "cypress run --browser chrome",
"test:firefox": "cypress run --browser firefox",
"dev": "webpack --mode=development",
"build": "webpack --mode=production",
"build:test": "webpack --mode=production --env.test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmichelin/open-github-links-in-ide.git"
},
"author": "Louis-Marie Michelin",
"license": "ISC",
"bugs": {
"url": "https://github.com/lmichelin/open-github-links-in-ide/issues"
},
"homepage": "https://github.com/lmichelin/open-github-links-in-ide#readme",
"devDependencies": {
"@types/chrome": "^0.0.134",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^4.3.0",
"cypress": "^6.8.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.11.3",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.2.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-extension-reloader": "^1.1.4",
"zip-webpack-plugin": "^3.0.0"
}
}