-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.08 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
{
"name": "discord_playtime",
"version": "1.0.1",
"description": "Discord Bot that collects playtime statistics",
"main": "index.js",
"scripts": {
"build": "node_modules/babel-cli/bin/babel.js app -d build --ignore __mocks__,__tests__",
"coverage": "yarn run test -- --coverage",
"coverage-report": "yarn run coverage && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "node_modules/jest/bin/jest.js",
"test-watch": "node_modules/jest/bin/jest.js --watchAll",
"start": "node index.js",
"lint": "node_modules/eslint/bin/eslint.js --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "yarn run lint -- --fix",
"flow": "node_modules/flow-bin/cli.js",
"flow-typed": "node_modules/rimraf/bin.js flow-typed/npm && node_modules/flow-typed/dist/cli.js install --overwrite || true"
},
"author": "thiemok",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/thiemok/discord_playtime"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.1",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-flowtype-errors": "^3.3.1",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.52.0",
"flow-typed": "^2.1.5",
"jest": "^20.0.4",
"jest-environment-node-debug": "^2.0.0",
"mockdate": "^2.0.1",
"mockgoose": "^7.3.3"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"debug": "^2.6.8",
"discord.js": "^11.1.0",
"express": "^4.15.3",
"igdb-api-node": "^3.0.1",
"mongoose": "^4.11.5"
}
}