Initial commit

This commit is contained in:
Arnaud Nelissen
2021-07-16 10:18:13 +02:00
commit 3af7ddab06
5894 changed files with 590836 additions and 0 deletions

120
node_modules/cbor/package.json generated vendored Normal file
View File

@@ -0,0 +1,120 @@
{
"_args": [
[
"cbor@5.1.0",
"C:\\Users\\anelissen.DOMAINE\\Development\\tools\\node\\cbor"
]
],
"_from": "cbor@5.1.0",
"_id": "cbor@5.1.0",
"_inBundle": false,
"_integrity": "sha512-qzEc7kUShdMbWTaUH7X+aHW8owvBU3FS0dfYR1lGYpoZr0mGJhhojLlZJH653x/DfeMZ56h315FRNBUIG1R7qg==",
"_location": "/cbor",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "cbor@5.1.0",
"name": "cbor",
"escapedName": "cbor",
"rawSpec": "5.1.0",
"saveSpec": null,
"fetchSpec": "5.1.0"
},
"_requiredBy": [
"/",
"/cbor-body-parser"
],
"_resolved": "https://registry.npmjs.org/cbor/-/cbor-5.1.0.tgz",
"_spec": "5.1.0",
"_where": "C:\\Users\\anelissen.DOMAINE\\Development\\tools\\node\\cbor",
"author": {
"name": "Joe Hildebrand",
"email": "joe-github@cursive.net"
},
"ava": {
"files": [
"test/*.ava.js"
]
},
"browser": {
"fs": false
},
"bugs": {
"url": "https://github.com/hildjj/node-cbor/issues"
},
"contributors": [
{
"name": "Patrick Gansterer",
"email": "paroga@paroga.com",
"url": "http://paroga.com/"
},
{
"name": "Artyom Yagilev",
"email": "github@scorpi.org",
"url": "http://scorpi.org/"
},
{
"name": "Denis Lapaev",
"email": "den@lapaev.me",
"url": "http://lapaev.me/"
},
{
"name": "Ruben Bridgewater",
"email": "ruben@bridgewater.de"
},
{
"name": "Burt Harris",
"email": "Burt_Harris_cbor@azxs.33mail.com"
}
],
"dependencies": {
"bignumber.js": "^9.0.0",
"nofilter": "^1.0.4"
},
"description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC7049).",
"devDependencies": {
"@types/node": "*",
"ava": "1.4.1",
"concordance": "^5.0",
"garbage": "0.0",
"jsdoc": "^3.6.5",
"light-server": "*",
"minami": "*",
"nyc": "^14.1.1"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "http://hildjj.github.io/node-cbor/",
"keywords": [
"coap",
"cbor",
"json"
],
"license": "MIT",
"main": "./lib/cbor.js",
"name": "cbor",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hildjj/node-cbor.git"
},
"scripts": {
"clean": "rm -rf coverage .nyc_output/ docs/api man/*",
"coverage": "nyc npm test",
"coveragehtml": "nyc -r html ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"dev": "light-server -q -s. -w 'lib/*.js # npm run doc' -w 'lib/*.js,test/*.js # npm run coveragehtml' -o /coverage/index.html",
"doc": "jsdoc -c .jsdoc.conf",
"lint": "eslint lib/*.js cli/lib/* cli/bin/* test/*.js",
"man": "mkdir -p man; for f in man_src/*.md; do b=`basename $f`; marked-man $f -o man/${b%.md}.1; gzip -9f man/${b%.md}.1; done",
"predev": "npm run coveragehtml",
"release": "npm version patch && git push --follow-tags && npm publish",
"test": "ava",
"typecheck": "tsc --allowJs --checkJs --noEmit --target ES6 --moduleResolution node lib/*.js"
},
"version": "5.1.0"
}