-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 791 Bytes
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
{
"name": "ircgrampp-plugin-nickserv",
"version": "0.4.0-alpha3",
"description": "Plugin for ircgrampp to identify irc user",
"main": "lib/index.js",
"scripts": {
"test": "echo :(",
"lint": "npx eslint ./src",
"build": "rm -rf lib/**; npx babel src --out-dir lib --copy-files",
"prepublish": "rm -rf lib/* && npm run build"
},
"author": "Botmasters",
"license": "GPL-2.0",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-default": "^0.2.1"
},
"dependencies": {
"lodash": "^4.17.20",
"nickserv": "^0.4.4"
}
}