generated from userscripters/template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "fire-extra-functionality",
"version": "1.4.2",
"description": "Adds some more features to the FIRE userscript",
"scripts": {
"esbuild": "node build.js",
"build": "npm run lint && npm run esbuild",
"lint": "eslint src",
"lintTst": "eslint test --fix",
"test": "TS_NODE_PROJECT='./test/tsconfig.json' mocha test/**/*.spec.ts*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userscripters/fire-extra-functionality.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/userscripters/fire-extra-functionality/issues"
},
"homepage": "https://github.com/userscripters/fire-extra-functionality#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/chai": "^5.0.1",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/tampermonkey": "^5.0.4",
"chai": "^5.1.2",
"esbuild": "^0.24.2",
"jsdom": "^25.0.1",
"mocha": "^11.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"type": "module"
}