-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.22 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
{
"name": "hackernews-user-tags",
"version": "0.0.5",
"description": "A Tampermonkey userscript which allows the user to associate a custom coloured label/tag on usernames throughout Hacker News.",
"main": "script.js",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lachlanmcdonald/hackernews-user-tags.git"
},
"author": "Lachlan McDonald <https://github.com/lachlanmcdonald>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lachlanmcdonald/hackernews-user-tags/issues"
},
"homepage": "https://github.com/lachlanmcdonald/hackernews-user-tags#readme",
"devDependencies": {
"@lachlanmcdonald/eslint-config-eslint": "^0.4.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/postcss-import": "^14.0.0",
"@types/tampermonkey": "^4.0.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"rollup": "^3.28.0",
"rollup-plugin-scss": "3",
"sass": "^1.64.2",
"tslib": "^2.6.1"
}
}