forked from urbanriskmap/cognicity-notification-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "cognicity-notification-lambda",
"version": "0.0.1",
"description": "Notification service for CogniCity (send messages to users)",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "./node_modules/.bin/babel src -d bin",
"lint": "eslint --fix src",
"mocha": "nyc mocha --require babel-core/register src/test/index",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbanriskmap/cognicity-notification-lambda.git"
},
"keywords": [
"CogniCity",
"Notifications"
],
"author": "Tomas Holderness",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/urbanriskmap/cognicity-notification-lambda/issues"
},
"homepage": "https://github.com/urbanriskmap/cognicity-notification-lambda#readme",
"dependencies": {
"aws-sdk": "^2.215.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"joi": "^13.1.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"unit.js": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0"
}
}