-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
54 lines (54 loc) · 1.38 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": "moleculer-twilio",
"version": "1.0.14",
"description": "Send SMS Message with Twilio.",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"readme": "node node_modules/moleculer-docgen/index.js -t README.md src/index.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"microservice",
"moleculer"
],
"repository": {
"type": "git",
"url": "[email protected]:moleculerjs/moleculer-addons.git"
},
"homepage": "https://github.com/moleculerjs/moleculer-addons/tree/master/packages/moleculer-twilio#readme",
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.0 || ^0.13.0 || ^0.12.0"
},
"devDependencies": {
"benchmarkify": "2.1.2",
"coveralls": "^3.1.0",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lolex": "^5.1.0",
"moleculer": "^0.14.8",
"moleculer-docgen": "^0.3.0",
"nodemon": "^1.19.4",
"npm-check": "^5.9.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 8.x.x"
},
"dependencies": {
"twilio": "^3.69.0"
}
}