-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 801 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 801 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
{
"name": "wikiProcessingBot",
"private": true,
"version": "1.0.1",
"description": "Listens to streaming wiki commits",
"repository": "https://github.com/menome",
"license": "Commercial",
"dependencies": {
"decypher": "^0.13.0",
"@menome/botframework": "^2.1.14",
"node-wikipedia": "^0.0.2"
},
"devDependencies": {
"mocha": "^2.5.3",
"chai": "^3.5.0",
"supertest": "^3.0.0",
"mock-require": "^2.0.1",
"nodemon": "latest"
},
"scripts": {
"start": "[ \"$NODE_ENV\" = \"production\" ] && npm run prod || npm run dev",
"dev": "node ./node_modules/nodemon/bin/nodemon.js app/index.js",
"prod": "./node_modules/forever/bin/forever --minUptime 5000 --spinSleepTime 1000 app/app.js",
"test": "./node_modules/mocha/bin/mocha -C test"
}
}