-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 742 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 742 Bytes
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
{
"name": "sms-receive",
"version": "1.3.8",
"description": "A mechanism for receiving SMS messages at public addresses",
"main": "index.js",
"scripts": {
"test": "mocha t/*.js",
"preversion": "npm run test",
"version": "",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"sms",
"phone"
],
"author": "Erick Calder <e@arix.com>",
"license": "ISC",
"homepage": "https://github.com/ekkis/sms-receive",
"repository": {
"type": "git",
"url": "https://github.com/ekkis/sms-receive.git"
},
"dependencies": {
"node-fetch": "^2.6.7",
"node-html-parser": "^1.1.12",
"phonenumberlite": "^1.0.0"
},
"devDependencies": {
"mocha": "^10.1.0"
}
}