forked from erdtman/canonicalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 KB
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
{
"name": "canonicalize",
"version": "2.1.0",
"description": "JSON canonicalize function ",
"main": "lib/canonicalize.js",
"types": "lib/canonicalize.d.ts",
"bin": "bin/canonicalize.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"pretest": "semistandard --fix",
"test": "ava",
"coverage": "nyc npm test",
"coveragehtml": "nyc report -r html",
"precoveragehtml": "npm run coverage",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erdtman/canonicalize.git"
},
"keywords": [
"json",
"canonical",
"canonicalize",
"signing",
"crypto"
],
"contributors": [
{
"name": "Samuel Erdtman",
"email": "[email protected]"
},
{
"name": "Anders Rundgren",
"email": "[email protected] "
}
],
"devDependencies": {
"ava": "*",
"semistandard": "*",
"jsonfile": "*",
"nyc": "*"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/erdtman/canonicalize/issues"
},
"homepage": "https://github.com/erdtman/canonicalize#readme"
}