-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 981 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 981 Bytes
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
{
"name": "polyfill-lambda",
"version": "0.2.0",
"description": "Polyfills based on the user agent",
"main": "handler.js",
"scripts": {
"lint": "node ensureSetup.js && chq-scripts lint",
"test": "chq-scripts test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CultureHQ/polyfill-lambda.git"
},
"author": "Kevin Deisz",
"license": "MIT",
"bugs": {
"url": "https://github.com/CultureHQ/polyfill-lambda/issues"
},
"homepage": "https://github.com/CultureHQ/polyfill-lambda#readme",
"dependencies": {
"polyfill-library": "^3.110.1"
},
"devDependencies": {
"@culturehq/scripts": "^6.0.1",
"@silvermine/serverless-plugin-cloudfront-lambda-edge": "2.2.3",
"express": "^4.17.2"
},
"eslintConfig": {
"extends": [
"@culturehq"
],
"rules": {
"strict": "off"
}
},
"jest": {
"roots": [
"."
],
"setupFilesAfterEnv": [
"./ensureSetup.js"
]
}
}