-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
92 lines (92 loc) · 1.89 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@cmdotcom/text-sdk",
"version": "2.1.0",
"description": "Package to make it very easy to send text messages with CM.com",
"keywords": [
"cm",
"cm.com",
"sms",
"messaging",
"text",
"rcs",
"api",
"messaging",
"text",
"sms",
"push",
"whatsapp",
"viber",
"wechat",
"rcs",
"voice",
"business messaging",
"telegram",
"conversational",
"sms chat",
"chat",
"sms 2.0",
"rbm",
"mms",
"rich sms",
"rich communication services",
"twitter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cmdotcom/text-sdk-javascript.git"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "CM.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "~4.3.3",
"@types/chai-as-promised": "~7.1.5",
"@types/mocha": "~10.0.0",
"@types/node": "~16.10.2",
"chai": "~4.3.6",
"chai-as-promised": "~7.1.1",
"codecov": "~3.8.3",
"mocha": "~10.0.0",
"nock": "~13.2.9",
"nyc": "~15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "~0.5.21",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"typescript": "~4.8.4"
},
"scripts": {
"build": "npx rimraf ./dist/ && tsc",
"lint": "tslint --project ./",
"test": "nyc mocha spec/**/*.spec.ts",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"bugs": {
"url": "https://github.com/cmdotcom/text-sdk-javascript/issues"
},
"homepage": "https://github.com/cmdotcom/text-sdk-javascript#readme",
"directories": {
"lib": "lib"
},
"dependencies": {
"axios": "^1.5.1"
}
}