-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.46 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": "certificate-recipient",
"version": "0.3.0",
"description": "Recipient of certificates delivered by Certificate Manager Service",
"scripts": {
"assert-aws-lambda-node": "(node -v | grep -q ${npm_package_scriptvars_aws_lambda_node}) || (echo \"Expected node version ${npm_package_scriptvars_aws_lambda_node}, got $(node -v)\" && exit 1)",
"build": "npm run assert-aws-lambda-node && npm run clean && npm install --production --no-save && npm list 1>/dev/null && zip -r --exclude=*.git* --exclude=*test/* --exclude=*aws-sdk* --exclude=*test.js* --exclude=*.DS_Store ${npm_package_name}@${npm_package_version}.zip .",
"clean": "rm -f ${npm_package_name}@*.zip && rm -rf node_modules && rm -f package-lock.json",
"preinstall": "npm run assert-aws-lambda-node",
"test": "npm run assert-aws-lambda-node && npm list 1>/dev/null && jest --env node"
},
"scriptvars": {
"aws_lambda_node": "v12"
},
"devDependencies": {
"aws-sdk": "2.713.0",
"capability-token": "0.6.0",
"capability-uri": "0.4.0",
"clone": "2.1.2",
"jest": "26.1.0"
},
"dependencies": {
"@hapi/joi": "17.1.1"
},
"contributors": [
"Tristan Slominski <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:capabilityio/certificate-recipient.git"
},
"keywords": [
"capability",
"capabilityio",
"certificatemanager",
"certificate",
"recipient",
"store"
]
}