-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "adonis-smser",
"version": "0.1.0",
"description": "Sms provider for adonis framework and has support for several common sms services to send sms",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"posttest": "npm run coverage",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"adonis",
"adonis-framework",
"sms"
],
"author": "yariksav",
"license": "MIT",
"devDependencies": {
"@adonisjs/fold": "^4.0.8",
"@adonisjs/sink": "^1.0.16",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^5.0.1",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"node-cache-promise": "^1.0.0",
"nyc": "^11.7.1",
"plivo": "^4.0.0",
"semver": "^5.5.0",
"smsapicom": "^1.5.1",
"standard": "^11.0.1",
"twilio": "^3.17.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"bin"
]
},
"standard": {
"globals": [
"use"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.0",
"clone": "^2.1.1",
"debug": "^3.1.0",
"get-stream": "^3.0.0",
"got": "^8.3.0",
"uuid": "^8.0.0",
"xml-js": "^1.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yariksav/adonis-smser.git"
},
"bugs": {
"url": "https://github.com/yariksav/adonis-smser/issues"
},
"homepage": "https://github.com/yariksav/adonis-smser#readme"
}