-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "dovetail-counts-lambda",
"version": "0.0.1",
"engines": {
"node": ">= 16.0.0"
},
"description": "Count which bytes of a multi-segment mp3 were downloaded",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "yarn run build-sync && yarn run build-prune && yarn run build-zip",
"build-sync": "rsync -crl --delete --exclude-from .lambdaignore . build",
"build-prune": "cd build && yarn --production",
"build-zip": "rm -f build.zip && cd build && zip -rq ../build.zip ."
},
"repository": "[email protected]:PRX/dovetail-counts-lambda.git",
"keywords": [
"lambda",
"dovetail",
"bytes",
"counts"
],
"author": "ryan cavis <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PRX/dovetail-counts-lambda/issues"
},
"homepage": "https://github.com/PRX/dovetail-counts-lambda#readme",
"dependencies": {
"ioredis": "^4.0.0",
"lambda-log": "^2.0.0"
},
"devDependencies": {
"aws-sdk": "^2.912.0",
"dotenv": "^10.0.0",
"jest": "^26.6.3",
"prettier": "^2.3.2"
},
"jest": {
"globalSetup": "<rootDir>/test-setup.js",
"modulePathIgnorePatterns": [
"<rootDir>/build/"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"trailingComma": "all",
"useTabs": false,
"endOfLine": "lf",
"singleQuote": true,
"arrowParens": "avoid"
}
}