- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"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": "samuel@erdtman.se"
|
|
},
|
|
{
|
|
"name": "Anders Rundgren",
|
|
"email": "anders.rundgren.net@gmail.com "
|
|
}
|
|
],
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"semistandard": "*",
|
|
"jsonfile": "*",
|
|
"nyc": "*"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/erdtman/canonicalize/issues"
|
|
},
|
|
"homepage": "https://github.com/erdtman/canonicalize#readme"
|
|
}
|