-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 884 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 884 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
{
"name": "capability-uri",
"version": "0.4.1",
"description": "Capability URI scheme 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)",
"test": "npm run assert-latest-node && jest"
},
"scriptvars": {
"latest_node": "v14.15.1"
},
"main": "index.js",
"devDependencies": {
"jest": "26.6.3",
"urlsafe-base64": "1.0.0"
},
"dependencies": {
"capability-token": "0.6.1"
},
"contributors": [
"Tristan Slominski <tristan.slominski@gmail.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:capabilityio/capability-uri.git"
}
}