-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
53 lines (53 loc) · 1.92 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
{
"name": "open-github-links-in-ide",
"version": "1.2.3",
"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 --headed --browser chrome",
"test:firefox": "cypress run --headed --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",
"dependencies": {
"milligram": "^1.4.1"
},
"devDependencies": {
"@types/chrome": "^0.0.246",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"cypress": "^13.2.0",
"cypress-real-events": "^1.10.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-ext-reloader": "^1.1.9",
"zip-webpack-plugin": "^4.0.1"
}
}