-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.9 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
{
"name": "@automat-berlin/node-red-contrib-twilio",
"version": "0.0.1",
"homepage": "https://automat.berlin",
"repository": {
"type": "git",
"url": "https://github.com/automat-berlin/node-red-contrib-twilio"
},
"bugs": {
"url": "https://github.com/automat-berlin/node-red-contrib-twilio/issues",
"email": "info@automat.berlin"
},
"license": "MIT",
"node-red": {
"nodes": {
"current-weather": "nodes/weather/current-weather.js",
"dial": "nodes/voice/dial.js",
"gather": "nodes/voice/gather.js",
"hangup-call": "nodes/voice/hangup-call.js",
"hangup": "nodes/voice/hangup.js",
"message": "nodes/sms/message.js",
"play": "nodes/voice/play.js",
"redirect": "nodes/sms/redirect.js",
"reject": "nodes/voice/reject.js",
"say": "nodes/voice/say.js",
"webhook": "nodes/webhook.js"
}
},
"dependencies": {
"body-parser": "^1.19.0",
"request": "^2.88.0",
"twilio": "^3.36.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"node-red": "^1.0.2",
"node-red-contrib-mongodb3": "^2.0.1",
"node-red-node-mysql": "0.0.19",
"node-red-node-test-helper": "^0.2.3",
"prettier": "^1.18.2",
"should": "^13.2.3"
},
"scripts": {
"prettier:format": "node_modules/.bin/prettier --write \"**/*.{html,js,md}\"",
"prettier:check": "node_modules/.bin/prettier --check \"**/*.{html,js,md}\"",
"lint": "node_modules/.bin/eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "node node_modules/node-red/red.js --settings settings.js",
"test": "node_modules/.bin/mocha \"test/**/*_spec.js\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{html,js,md}": [
"prettier --list-different"
],
".": [
"eslint"
]
}
}