-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1 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
{
"name": "fuse-email",
"version": "0.0.1-alpha.0",
"description": "A framework for writing conversational email responders",
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover --report lcov --dir test/reports/ _mocha --recursive ./test/ --grep ./test/**/*.spec.js -- --colors --reporter spec",
"coveralls": "cat ./test/reports/lcov.info | ./node_modules/.bin/coveralls"
},
"author": "Avi Goldman",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"html-minifier": "^3.2.3",
"html-to-text": "^2.1.3",
"lodash": "^4.17.2",
"mailparser": "^0.6.1",
"parse-reply": "0.0.4",
"sparkpost": "^2.1.1",
"uniqid": "^4.1.1",
"winston": "^2.3.0"
},
"devDependencies": {
"axios": "^0.15.3",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"dotenv": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"ngrok": "^2.2.4",
"proxyquire": "^1.7.10",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
}
}