-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "embellish",
"version": "1.0.2",
"description": "Adds Reddit event embeds to old Reddit.",
"main": "./dist/index.user.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.ts\" --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snakeroom/Embellish.git"
},
"keywords": [
"reddit",
"embed",
"userscript"
],
"author": "haykam821",
"license": "MIT",
"bugs": {
"url": "https://github.com/Snakeroom/Embellish/issues"
},
"homepage": "https://github.com/Snakeroom/Embellish#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^7.32.0",
"eslint-config-haykam": "^1.12.0",
"fork-ts-checker-webpack-plugin": "^6.2.0",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-userscript": "^2.5.6"
},
"eslintConfig": {
"extends": [
"eslint-config-haykam",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"semi": "off",
"@typescript-eslint/semi": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"sort-imports": "error",
"jsdoc/require-param-type": "off"
},
"overrides": [
{
"files": "./tests/**/*.ts",
"rules": {
"jsdoc/require-jsdoc": "off"
}
}
]
}
}