-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "libquassel",
"description": "Javascript lib to connect and interact with Quassel IRC core",
"version": "4.0.0",
"homepage": "https://github.com/magne4000/node-libquassel",
"license": "MIT",
"author": {
"name": "Joël Charles",
"email": "[email protected]"
},
"files": [
"LICENSE-MIT",
"README.md",
"src",
"dist",
"index.js"
],
"repository": {
"type": "git",
"url": "git://github.com/magne4000/node-libquassel.git"
},
"bugs": {
"url": "https://github.com/magne4000/node-libquassel/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/magne4000/node-libquassel/blob/master/LICENSE-MIT"
}
],
"scripts": {
"test": "tape -r @babel/register test/test.js",
"test-manual": "babel-node test/manual.js",
"build": "webpack --config webpack.config.dist.cjs",
"build-dev": "webpack --config webpack.config.dev.cjs",
"watch": "webpack --config webpack.config.dev.cjs --watch --progress",
"doc": "esdoc",
"eslint": "eslint src",
"prepublishOnly": "npm run eslint && npm run build"
},
"main": "index.js",
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-proposal-import-attributes-to-assertions": "^7.22.5",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.22.15",
"ansi-styles": "^6.2.1",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"blob-to-buffer": "^1.2.9",
"clean-webpack-plugin": "^4.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"inquirer": "^9.2.11",
"node-polyfill-webpack-plugin": "^2.0.1",
"node-stdlib-browser": "^1.2.0",
"tape": "^5.7.2",
"terser-webpack-plugin": "^5.3.9",
"uglify-js": "^3.17.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"keywords": [
"quassel",
"libquassel"
],
"dependencies": {
"debug": "^4.3.4",
"node-forge": "^1.3.1",
"qtdatastream": "^1.1.0"
}
}