-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "aqi-monitor",
"private": true,
"main": "lib/handler.js",
"version": "0.0.0-development",
"description": "Monitor AQI using AWS Lambda",
"scripts": {
"test": "npm run clean && npm run gardener && npm run test-simple",
"clean": "rm -rf lib",
"build": "npx babel src --out-dir lib --source-maps inline --copy-files --include-dotfiles",
"clean-build": "npm run clean && npm run build",
"build-artifact": "npm run clean-build && tar -zxvf $(npm pack) && rm *-0.0.0-development.tgz && cd package && tar -zcvf ../release.tar.gz . && cd .. && rm -rf package",
"test-simple": "nyc mocha \"./test/**/*.spec.js\"",
"coveralls": "node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"semantic-release": "npm run build-artifact && npm run clean-build && npx semantic-release",
"gardener": "node gardener"
},
"author": "Lukas Siemon",
"license": "MIT",
"devDependencies": {
"babel-eslint": "10.0.1",
"coveralls": "3.0.3",
"js-gardener": "1.38.6",
"lambda-tdd": "2.7.0",
"nock": "10.0.6",
"nyc": "13.3.0",
"semantic-release": "15.13.3",
"@babel/register": "7.4.0",
"@babel/core": "7.4.3",
"@babel/cli": "7.4.3",
"@babel/plugin-transform-flow-comments": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/preset-flow": "7.0.0"
},
"nyc": {
"tempDir": "./coverage/.nyc_output",
"report-dir": "./coverage",
"check-coverage": true,
"per-file": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"extension": [],
"cache": true,
"all": true,
"babel": true,
"exclude": [
"gardener.js",
"node_modules/*",
"coverage/*",
"flow-typed/*",
"lib/*"
]
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/simlu/aqi-monitor/blob/master/LICENSE"
}
],
"keywords": [
"air-quality",
"aqi",
"monitor",
"notification"
],
"homepage": "#readme",
"engines": {
"node": ">= 8.10"
},
"bugs": {
"url": "/issues"
},
"files": [
"lib"
],
"dependencies": {
"aqi-bot": "1.1.4",
"aws-sdk": "2.437.0",
"aws-sdk-wrap": "1.1.6",
"cheerio": "1.0.0-rc.3",
"lambda-rollbar": "1.10.4",
"lodash.get": "4.4.2",
"request": "2.88.0",
"request-promise-native": "1.0.7",
"slack-sdk": "1.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/simlu/aqi-monitor.git"
}
}