-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
52
53
54
{
"name": "copy-cat",
"version": "0.1.7",
"description": "A standalone server to mock various communications services for push messaging, email, and sms.",
"main": "./lib/server",
"scripts": {
"test": "./node_modules/.bin/gulp test",
"test-travis": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --recursive test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmerkes/copy-cat.git"
},
"keywords": [
"express",
"expressjs",
"node",
"javascript",
"copy-cat",
"copycat",
"testing",
"mock",
"pushwoosh",
"mailgun",
"twilio"
],
"author": "Matt Merkes",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmerkes/copy-cat/issues"
},
"homepage": "https://github.com/mmerkes/copy-cat#readme",
"dependencies": {
"body-parser": "^1.13.1",
"express": "^4.13.0",
"express-route-validator": "^0.2.0",
"lodash": "^3.10.1",
"morgan": "^1.6.0",
"phone": "^1.0.5",
"validator": "^3.40.1"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.0",
"gulp-mocha": "^2.1.2",
"istanbul": "^0.3.17",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"supertest": "^1.0.1"
}
}