-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 881 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
{
"name": "slack-codegolf",
"version": "0.0.1",
"description": "Play ground: https://codegolfbeta.slack.com/",
"scripts": {
"start": "node --optimize-for-size index.js",
"lint": "eslint --ignore-path .gitignore -c .eslintrc .",
"lint:fix": "npm run lint -- --fix",
"test": "ava test/ && npm run lint",
"test:watch": "watch 'npm test' ./{lib,test}/"
},
"engines": {
"node": ">=6.4.0"
},
"dependencies": {
"@slack/client": "^3.9.0",
"bluebird": "^3.5.0",
"node-fetch": "^1.6.3",
"puid": "^1.0.7",
"redis": "^2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/slack-codegolf/platform"
},
"author": "slack-codegolf",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"watch": "^1.0.2"
},
"private": true
}