-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "cm-messaging-node",
"version": "1.1.0",
"description": "Package to make it very easy to send text messages with CM.com",
"keywords": [
"cm",
"cm.com",
"sms",
"messaging",
"text",
"rcs"
],
"repository": {
"type": "git",
"url": "https://github.com/CMTelecom/cm-messaging-node.git"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "Eric Smekens",
"license": "MIT",
"dependencies": {
"bluebird": "~3.5.1",
"http": "~0.0.0",
"request": "~2.87.0"
},
"devDependencies": {
"@types/chai": "~4.1.4",
"@types/chai-as-promised": "~7.1.0",
"@types/mocha": "~5.2.0",
"@types/node": "^8.0.0",
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"mocha": "~5.2.0",
"source-map-support": "~0.5.6",
"ts-node": "~6.0.5",
"tslint": "~5.10.0",
"typescript": "~2.8.3",
"nyc": "~11.8.0",
"codecov": "~3.0.4",
"nock": "~9.3.0"
},
"scripts": {
"build": "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
}
}