forked from PinkHippos/ph-todo-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.09 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
{
"name": "ph-todo-worker",
"version": "0.1.0",
"description": "Worker container for ph-todo-example. Holds Util, User, and Todo pllugins.",
"scripts": {
"start": "node build/index.js",
"build": "coffee --output $PWD/build/ --compile $PWD/src/",
"test": "mocha --require coffeescript/register test/**/*.spec.coffee",
"test:wit_ai": "mocha --require coffeescript/register test/wit_ai/*.spec.coffee",
"test:util": "mocha --require coffeescript/register test/util/*.spec.coffee",
"test:todo": "mocha --require coffeescript/register test/todo/*.spec.coffee"
},
"main": "index.js",
"author": "chippawah <charles.cantrell@me.com>",
"license": "Apache-2.0",
"dependencies": {
"logstash-client": "^1.1.1",
"node-wit": "^4.3.0",
"q": "^1.4.1",
"seneca": "^3.2.2",
"seneca-amqp-transport": "2.1.0",
"tcp-ping": "^0.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "https://github.com/PinkHippos/ph-todo-worker.git",
"devDependencies": {
"chai": "^4.0.2",
"coffeescript": "^2.0.2",
"dotenv": "^4.0.0",
"mocha": "^4.0.1"
}
}