This repository has been archived by the owner on Oct 27, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (53 loc) · 1.53 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": "github-mention-highlighter",
"version": "0.2.1",
"description": "Highlight user and team mentions on GitHub",
"main": "script.js",
"scripts": {
"crx": "crx pack",
"build": "webpack",
"watch": "webpack --watch --mode=development",
"test": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"fix": "eslint ./src --fix --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "https://github.com/benbalter/github-mention-highlighter"
},
"author": "Ben Balter",
"license": "MIT",
"bugs": {
"url": "https://github.com/benbalter/github-mention-highlighter/issues"
},
"dependencies": {
"@types/copy-webpack-plugin": "^6.4.0",
"jquery": "^3.5.0",
"scss": "~0.2.4"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/chrome": "0.0.122",
"@types/jquery": "^3.5.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.1",
"copy-webpack-plugin": "^6.4.1",
"crx": "^5.0.1",
"crx-webpack-plugin": "^0.1.6",
"css-loader": "^4.3.0",
"eslint": "^7.17.0",
"sass": "^1.32.0",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"ts-loader": "^8.0.14",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11"
}
}