Dorian 0d073fa89e Add comprehensive installation and setup documentation
- 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
2026-01-27 17:18:21 +00:00

46 lines
1.1 KiB
JSON

{
"name": "err-code",
"version": "3.0.1",
"description": "Create an error with a code",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint '{./*.js,test/**/*.js}'",
"check": "tsc --noEmit",
"prepare": "tsc --emitDeclarationOnly --declarationDir dist",
"test": "mocha --bail",
"prepublishOnly": "browserify -s err-code index.js > index.umd.js"
},
"bugs": {
"url": "https://github.com/IndigoUnited/js-err-code/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/js-err-code.git"
},
"keywords": [
"error",
"err",
"code",
"properties",
"property"
],
"author": "IndigoUnited <hello@indigounited.com> (http://indigounited.com)",
"license": "MIT",
"devDependencies": {
"@satazor/eslint-config": "^3.0.0",
"@types/expect.js": "0.3.29",
"@types/mocha": "8.2.0",
"browserify": "^17.0.0",
"eslint": "^7.19.0",
"expect.js": "^0.3.1",
"mocha": "^8.2.1",
"typescript": "^4.1.3"
},
"files": [
"index.js",
"index.umd.js",
"dist/index.d.ts"
]
}