-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@rabblerouser/smser",
"version": "1.0.0",
"description": "Sends SMS in response to events",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"lint": "eslint src",
"test": "NODE_ENV=test mocha -r src/__tests__/testGlobals.js --recursive src/__tests__",
"seed": "node bin/seed.js",
"simulate": "node bin/simulate.js",
"start": "node src/index.js",
"local": "yarn seed && yarn dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabblerouser/smser.git"
},
"author": "Rabble Rouser Team",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rabblerouser/smser/issues"
},
"homepage": "https://github.com/rabblerouser/smser#readme",
"dependencies": {
"@rabblerouser/stream-client": "^0.8.14",
"aws-sdk": "^2.9.0",
"body-parser": "^1.16.0",
"express": "^4.14.1",
"morgan": "^1.8.1",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.12.1",
"sinon": "^4.0.2",
"sinon-chai": "^2.8.0"
}
}