forked from freeCodeCamp/camper-gitter-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.97 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
{
"name": "camperbot",
"version": "0.0.13",
"dependencies": {
"cli-color": "",
"dotenv": "^1.2.0",
"lodash": "^3.10.1",
"node-gitter": "^1.2.8",
"request": "~2.27.0"
},
"devDependencies": {
"babel-eslint": "^6.0.0",
"eslint": "^2.0.0",
"eslint-plugin-react": "^3.11.3",
"faucet": "0.0.1",
"gulp": "^3.9.0",
"gulp-env": "^0.2.0",
"gulp-eslint": "^2.0.0",
"gulp-tape": "0.0.7",
"nodemon": "~1.0.15",
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
},
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js 'config/*.js' 'data/rooms/*.js' 'data/*.js' 'lib/**/*.js' 'test/*.js' 'app.js' 'gulpfile.js'",
"start": "node app.js",
"test": "npm run make-env npm && npm run make-config && npm run lint && LOG_LEVEL=0 SERVER_ENV=test node_modules/tape/bin/tape test/*.spec.js | tap-spec",
"make-env": "node -e 'var fs = require(\"fs\"); if(!fs.existsSync(\"./.env\")) { var rs = fs.createReadStream(\"./dot-EXAMPLE.env\"); var ws = fs.createWriteStream(\".env\"); rs.pipe(ws); }'",
"make-config": "node -e 'var fs = require(\"fs\"); if(!fs.existsSync(\"./config.json\")) { var rs = fs.createReadStream(\"./example.config.json\"); var ws = fs.createWriteStream(\"config.json\"); rs.pipe(ws); }'"
},
"description": "[![Join the chat at https://gitter.im/FreeCodeCamp/camperbot](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/FreeCodeCamp/camperbot) [![Stories in Ready](https://badge.waffle.io/FreeCodeCamp/camperbot.png?label=ready&title=Ready)](https://waffle.io/FreeCodeCamp/camperbot)",
"main": "app.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/camperbot.git"
},
"keywords": [
"bot",
"gitter",
"chat"
],
"author": "freeCodeCamp",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/freeCodeCamp/camperbot/issues"
},
"homepage": "https://github.com/freeCodeCamp/camperbot#readme"
}