-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 962 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 962 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "ircgrampp-plugin",
"version": "0.3.0",
"description": "ircgrampp plugin base",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/gulp gulp test",
"lint": "./node_modules/.bin/gulp lint",
"build": "./node_modules/.bin/gulp build",
"prepublish": "npm run build"
},
"keywords": [
"ircgrampp",
"irc",
"telegram",
"plugin",
"plugins"
],
"bugs": "https://github.com/botmasters/ircgrampp/issues",
"repository": {
"type": "git",
"url": "https://github.com/botmasters/ircgrampp.git"
},
"author": "Botmasters",
"license": "GPL-2.0",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"eslint-config-defaults": "^9.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cli": "^1.3.0",
"gulp-eslint": "^3.0.1"
},
"dependencies": {
"semver": "^5.3.0"
}
}