-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "ghastly",
"version": "0.5.0",
"description": "A powerful and flexible library for modularizing Discord.js clients.",
"keywords": [
"discord.js",
"library",
"command",
"plugin",
"bot"
],
"homepage": "https://github.com/hkwu/ghastly#readme",
"bugs": {
"url": "https://github.com/hkwu/ghastly/issues"
},
"license": "MIT",
"author": "Kelvin Wu <[email protected]>",
"files": [
"lib",
"command.js",
"middleware.js"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hkwu/ghastly.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"build:docs": "esdoc",
"watch": "npm run build -- --watch",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require babel-register --recursive",
"docs:dev": "docsify serve docs",
"prepublishOnly": "rimraf lib && npm run build && npm test"
},
"dependencies": {
"es6-error": "^4.0.0",
"lodash": "^4.15.0",
"string-argv": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.18.0",
"chai": "^4.1.2",
"chai-subset": "^1.3.0",
"docsify-cli": "^4.3.0",
"esdoc": "^1.0.3",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.0.1",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"discord.js": "^11.0.0"
},
"engines": {
"node": ">=7"
}
}