-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "open-data-notifications",
"version": "1.0.0",
"description": "Notification system for open data sources",
"main": "index.js",
"scripts": {
"start": "node bin/start.js",
"dev": "nodemon bin/start.js",
"api_poll": "node bin/api_poll.js",
"test": "standard && jest",
"jest": "jest",
"standard": "standard",
"standard-fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Twilio-org/open-data-notifications.git"
},
"keywords": [
"notifications",
"twilio",
"open",
"data",
"open",
"media"
],
"author": "Twilio.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/Twilio-org/open-data-notifications/issues"
},
"homepage": "https://github.com/Twilio-org/open-data-notifications#readme",
"devDependencies": {
"jest-cli": "^20.0.1",
"nock": "^9.0.13",
"nodemon": "^1.11.0",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"engines": {
"node": "7.10.0",
"npm": "4.2.0"
},
"jest": {
"testEnvironment": "node",
"testRegex": "./test/.*.js$"
},
"dependencies": {
"body-parser": "^1.17.1",
"config": "^1.26.1",
"express": "^4.15.2",
"helmet": "^3.6.0",
"request": "^2.81.0",
"twilio": "^3.0.0"
}
}