forked from borodayev/sms-sender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.06 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
{
"name": "@pskzcompany/sms-sender",
"main": "lib/index.js",
"version": "0.0.0-semantically-released",
"description": "This is a wrapper for AWS.SNS & SMSC API in Node.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/pskzcompany/sms-sender.git"
},
"keywords": [
"sms",
"sms-sender",
"smsc",
"aws-sms",
"aws-sns",
"aws",
"smsc-sender"
],
"bugs": {
"url": "https://github.com/pskzcompany/sms-sender/issues"
},
"homepage": "https://github.com/pskzcompany/sms-sender",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"node-fetch": "^2.6.1"
},
"optionalDependencies": {
"aws-sdk": "^2.211.0"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/lodash": "^4.14.168",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"fetch-mock": "9.11.0",
"jest": "27.0.4",
"jest-junit": "12.1.0",
"mongodb-memory-server": "6.9.6",
"mongoose": "^5.0.4",
"nodemon": "2.0.7",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.3",
"ts-jest": "27.0.2",
"typescript": "4.3.2"
},
"scripts": {
"demo-with-mongoose": "./node_modules/.bin/ts-node ./examples/with_mongoose/index.ts",
"demo-by-regexp": "./node_modules/.bin/ts-node ./examples/by_regexp/index.ts",
"demo-retry-another": "./node_modules/.bin/ts-node ./examples/retry_another/index.ts",
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 4",
"lint": "npm run eslint",
"tscheck": "tsc --noEmit",
"eslint": "eslint --ext .ts ./src",
"test": "npm run coverage && npm run eslint && npm run tscheck",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
}
}