CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json149 linesDownload Raw Back to json-pack
1{2  "name": "@jsonjoy.com/json-pack",3  "version": "1.14.0",4  "description": "High-performance JSON serialization library",5  "author": {6    "name": "streamich",7    "url": "https://github.com/streamich"8  },9  "homepage": "https://github.com/jsonjoy-com/json-pack",10  "repository": "jsonjoy-com/json-pack",11  "license": "Apache-2.0",12  "funding": {13    "type": "github",14    "url": "https://github.com/sponsors/streamich"15  },16  "keywords": [17    "json",18    "cbor",19    "dag-json",20    "dag-cbor",21    "pack",22    "msgpack",23    "MessagePack",24    "json-pack",25    "ubjson",26    "bencode",27    "ion",28    "amazon-ion",29    "bson",30    "resp",31    "resp3",32    "redis",33    "resp-3",34    "resp2"35  ],36  "engines": {37    "node": ">=10.0"38  },39  "main": "lib/index.js",40  "types": "lib/index.d.ts",41  "typings": "lib/index.d.ts",42  "files": [43    "LICENSE",44    "lib/"45  ],46  "scripts": {47    "prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,tsx,js,jsx}\"",48    "prettier:check": "prettier --ignore-path .gitignore --list-different 'src/**/*.{ts,tsx,js,jsx}'",49    "lint": "yarn tslint",50    "tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose --project .",51    "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",52    "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",53    "jest": "node -r ts-node/register ./node_modules/.bin/jest",54    "test": "jest --maxWorkers 7",55    "test:ci": "yarn jest --maxWorkers 3 --no-cache",56    "coverage": "yarn test --collectCoverage",57    "typedoc": "typedoc",58    "build:pages": "rimraf gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",59    "deploy:pages": "gh-pages -d gh-pages",60    "publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages"61  },62  "peerDependencies": {63    "tslib": "2"64  },65  "dependencies": {66    "@jsonjoy.com/base64": "^1.1.2",67    "@jsonjoy.com/buffers": "^1.0.0",68    "@jsonjoy.com/codegen": "^1.0.0",69    "@jsonjoy.com/json-pointer": "^1.0.1",70    "@jsonjoy.com/util": "^1.9.0",71    "hyperdyperid": "^1.2.0",72    "thingies": "^2.5.0"73  },74  "devDependencies": {75    "@msgpack/msgpack": "^3.0.0-beta2",76    "@redis/client": "^1.5.12",77    "@shelacek/ubjson": "^1.1.1",78    "@types/benchmark": "^2.1.2",79    "@types/jest": "^29.5.12",80    "app-root-path": "^3.1.0",81    "axios": "^1.3.5",82    "base64-js": "^1.5.1",83    "benchmark": "^2.1.4",84    "bson": "^5.4.0",85    "cbor": "^9.0.2",86    "cbor-js": "^0.1.0",87    "cbor-sync": "^1.0.4",88    "cbor-x": "^1.5.9",89    "cborg": "^2.0.3",90    "fast-safe-stringify": "^2.1.1",91    "fast-stable-stringify": "^1.0.0",92    "fastest-stable-stringify": "^2.0.2",93    "gh-pages": "^5.0.0",94    "ion-js": "^4.3.0",95    "jest": "^29.7.0",96    "js-base64": "^3.7.2",97    "jsbi": "^4.3.0",98    "json-pack-napi": "^0.0.2",99    "messagepack": "^1.1.12",100    "msgpack-lite": "^0.1.26",101    "msgpack5": "^6.0.2",102    "msgpackr": "^1.6.0",103    "pako": "^2.0.4",104    "prettier": "^3.2.5",105    "pretty-quick": "^3.1.3",106    "redis-parser": "^3.0.0",107    "rimraf": "^5.0.0",108    "safe-stable-stringify": "^2.3.1",109    "secure-json-parse": "^2.4.0",110    "tinybench": "^2.4.0",111    "ts-jest": "^29.1.2",112    "ts-loader": "^9.5.1",113    "ts-node": "^10.9.2",114    "tslib": "^2.6.2",115    "tslint": "^6.1.3",116    "tslint-config-common": "^1.6.2",117    "typedoc": "^0.25.12",118    "typescript": "^5.3.3"119  },120  "jest": {121    "verbose": true,122    "testEnvironmentOptions": {123      "url": "http://localhost/"124    },125    "setupFiles": [126      "<rootDir>/src/__tests__/setup.js"127    ],128    "moduleFileExtensions": [129      "ts",130      "js"131    ],132    "transform": {133      "^.+\\.ts$": "ts-jest"134    },135    "transformIgnorePatterns": [],136    "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.ts$"137  },138  "prettier": {139    "arrowParens": "always",140    "printWidth": 120,141    "tabWidth": 2,142    "useTabs": false,143    "semi": true,144    "singleQuote": true,145    "trailingComma": "all",146    "bracketSpacing": false147  }148}149 
basant307/AI_Governance_Project · CoolFace