-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "papetrail-reports",
"version": "1.0.1",
"description": "Collection of reports from Papertrail",
"main": "index.js",
"private": true,
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"unique-users-live": "node index.js",
"unique-companies-live": "node lib/get-unique-companies",
"extract-archive": "node lib/extract-archive-files.js",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telemark/papetrail-reports.git"
},
"keywords": [],
"author": "Geir Gåsodden <[email protected]> (https://github.com/zrrrzzt)",
"license": "MIT",
"engines": {
"node": ">=10.13.0"
},
"bugs": {
"url": "https://github.com/telemark/papetrail-reports/issues"
},
"homepage": "https://github.com/telemark/papetrail-reports#readme",
"devDependencies": {
"ava": "4.1.0",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "16.0.4"
},
"dependencies": {
"axios": "0.19.0",
"dotenv": "8.0.0"
}
}