-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 980 Bytes
/
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
{
"name": "cap1-hmac-sha512",
"version": "1.4.3",
"description": "Signature Version 1 signing process, specification, and reference implementation",
"scripts": {
"assert-latest-node": "(node -v | grep -q ${npm_package_scriptvars_latest_node}) || (echo \"Expected node version ${npm_package_scriptvars_latest_node}, got $(node -v)\" && exit 1)",
"demo": "node examples/demo.js",
"inject-examples": "node scripts/injectExamples.js",
"preinstall": "rm -f package-lock.json",
"test": "npm run assert-latest-node && jest"
},
"scriptvars": {
"latest_node": "v14.8.0"
},
"main": "index.js",
"devDependencies": {
"clone": "2.1.2",
"jest": "26.4.0"
},
"contributors": [
"Tristan Slominski <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:capabilityio/cap1-hmac-sha512.git"
}
}