This repository has been archived by the owner on Apr 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "discord-pugbot",
"description": "Make dem pugs yo.",
"version": "3.0.4",
"author": "Awpteamoose",
"bin": "./lib/index.js",
"dependencies": {
"babel-core": "6.25.0",
"babel-plugin-module-resolver": "2.7.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-flow": "6.23.0",
"discord.js": "11.1.0",
"moment": "2.18.1",
"node-json-db": "0.7.3",
"ramda": "0.24.1",
"source-map-support": "0.4.15",
"uws": "8.14.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"eslint": "4.2.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-flowtype-errors": "3.3.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.1.1",
"flow-bin": "0.50.0",
"flow-typed": "2.1.5"
},
"files": [
".babelrc",
"src",
"lib",
"assets",
"config.js"
],
"license": "CC0-1.0",
"repository": "https://github.com/Awpteamoose/discord-pugbot",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "babel src --out-dir lib --source-maps --copy-files",
"flow-typed": "flow-typed install",
"lint": "npm run lint:flow && npm run lint:eslint",
"lint:eslint": "eslint \"src/**\"",
"lint:flow": "flow",
"prepublishOnly": "npm run build"
}
}