Skip to content

Commit

Permalink
v4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erossignon committed Sep 3, 2023
1 parent f69613a commit 0f883d9
Show file tree
Hide file tree
Showing 5 changed files with 179 additions and 182 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "4.2.0",
"version": "4.3.0",
"npmClient": "npm"
}
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 55 additions & 55 deletions packages/node-opcua-crypto-test/package.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
{
"name": "node-opcua-crypto-test",
"private": true,
"version": "4.2.0",
"description": "Test suite for Crypto tools for Node-OPCUA",
"scripts": {
"build:tsup:esm": "tsup ./test/test_*.ts --shims --format esm --out-dir dist-esm --sourcemap --clean --dts",
"build:tsup:cjs": "tsup ./test/test_*.ts --shims --format cjs --out-dir dist-cjs --sourcemap --clean --dts",
"build:clean": "npx rimraf ./dist ./dist-* *.tsbuildinfo",
"build": "npm run build:tsup:esm && npm run build:tsup:cjs",
"tslint": "tslint --project . --fix",
"lint": "eslint . --ext .ts",
"test:esm": "mocha dist-esm/test_*.mjs --recursive --timeout 200000 --bail",
"test:cjs": "mocha dist-cjs --recursive --timeout 200000 --bail",
"test:esm:no": "cross-env NO_CREATE_PRIVATEKEY=1 npm run test:esm",
"test:cjs:no": "cross-env NO_CREATE_PRIVATEKEY=1 npm run test:cjs",
"test": "npm run test:esm && npm run test:cjs && npm run test:esm:no && npm run test:cjs:no",
"experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">15.0"
},
"dependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"lorem-ipsum": "^2.0.8",
"cross-env": "^7.0.3",
"source-map-support": "^0.5.21",
"@peculiar/webcrypto": "^1.4.3",
"@peculiar/x509": "^1.9.5",
"@types/jsrsasign": "^10.5.8",
"jsrsasign": "^10.8.6",
"node-opcua-crypto": "4.2.0",
"mocha": "^10.2.0",
"should": "^13.2.3",
"sshpk": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
}
}
{
"name": "node-opcua-crypto-test",
"private": true,
"version": "4.3.0",
"description": "Test suite for Crypto tools for Node-OPCUA",
"scripts": {
"build:tsup:esm": "tsup ./test/test_*.ts --shims --format esm --out-dir dist-esm --sourcemap --clean --dts",
"build:tsup:cjs": "tsup ./test/test_*.ts --shims --format cjs --out-dir dist-cjs --sourcemap --clean --dts",
"build:clean": "npx rimraf ./dist ./dist-* *.tsbuildinfo",
"build": "npm run build:tsup:esm && npm run build:tsup:cjs",
"tslint": "tslint --project . --fix",
"lint": "eslint . --ext .ts",
"test:esm": "mocha dist-esm/test_*.mjs --recursive --timeout 200000 --bail",
"test:cjs": "mocha dist-cjs --recursive --timeout 200000 --bail",
"test:esm:no": "cross-env NO_CREATE_PRIVATEKEY=1 npm run test:esm",
"test:cjs:no": "cross-env NO_CREATE_PRIVATEKEY=1 npm run test:cjs",
"test": "npm run test:esm && npm run test:cjs && npm run test:esm:no && npm run test:cjs:no",
"experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">15.0"
},
"dependencies": {
"@peculiar/webcrypto": "^1.4.3",
"@peculiar/x509": "^1.9.5",
"@types/jsrsasign": "^10.5.8",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"cross-env": "^7.0.3",
"jsrsasign": "^10.8.6",
"lorem-ipsum": "^2.0.8",
"mocha": "^10.2.0",
"node-opcua-crypto": "^4.3.0",
"should": "^13.2.3",
"source-map-support": "^0.5.21",
"sshpk": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
}
}
73 changes: 35 additions & 38 deletions packages/node-opcua-crypto-web/package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,35 @@
{
"name": "node-opcua-crypto-web",
"private": true,
"version": "4.2.0",
"description": "Crypto tools for Node-OPCUA",

"scripts": {
"build": "tsup --config tsup.config.mjs web/main.ts web/bundle.js",
"tslint": "tslint --project . --fix",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc.js source/**/*.ts test/**/*.ts --write"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">=16.0"
},
"dependencies": {
"node-opcua-crypto": "4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
}

}

{
"name": "node-opcua-crypto-web",
"private": true,
"version": "4.3.0",
"description": "Crypto tools for Node-OPCUA",
"scripts": {
"build": "tsup --config tsup.config.mjs web/main.ts web/bundle.js",
"tslint": "tslint --project . --fix",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc.js source/**/*.ts test/**/*.ts --write"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">=16.0"
},
"dependencies": {
"node-opcua-crypto": "^4.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
}
}
166 changes: 83 additions & 83 deletions packages/node-opcua-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,83 +1,83 @@
{
"name": "node-opcua-crypto",
"version": "4.2.0",
"description": "Crypto tools for Node-OPCUA",
"types": "./dist-types/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.js"
}
},
"./web": {
"import": {
"types": "./dist-types/source/index.d.ts",
"default": "./dist/source/index.mjs"
},
"require": {
"types": "./dist-types/source/index.d.ts",
"default": "./dist/source/index.js"
}
}
},
"scripts": {
"build:tsup": "tsup ./index.ts ./source/index.ts ./source/index_web.ts ./source_nodejs/index.ts --shims --format esm,cjs,iife --sourcemap --clean",
"build:types": "tsc -p tsconfig.types.json",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:demo": "node web/esbuild.mjs",
"build:clean": "npx rimraf ./dist ./dist-* *.tsbuildinfo",
"build:old": "npm run build:clean && npm run compile && node ../../scripts/prepare-package-json.mjs",
"build": "npm run build:tsup",
"prepare": "npm run build",
"tslint": "tslint --project . --fix",
"lint": "eslint . --ext .ts",
"makedoc": "npx typedoc index.ts --excludeNotDocumented --exclude \"_*\" --excludePrivate --excludeProtected --excludeExternals -out doc",
"cost-of-modules": "npx cost-of-modules --no-install",
"prettier-format": "prettier --config .prettierrc.js source/**/*.ts test/**/*.ts --write",
"ncu": "npx npm-check-updates -u -x env-paths,chalk",
"experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"makedoc": "npx typedoc packages/node-opcua-crypto/index.ts -out doc",
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">15.0"
},
"devDependencies": {
"@types/node": "^20.5.9",
"lorem-ipsum": "^2.0.8"
},
"dependencies": {
"@peculiar/webcrypto": "^1.4.3",
"@peculiar/x509": "^1.9.5",
"@types/jsrsasign": "^10.5.8",
"@types/sshpk": "^1.17.1",
"assert": "^2.0.0",
"better-assert": "^1.0.2",
"chalk": "^4.1.2",
"hexy": "0.3.5",
"jsrsasign": "^10.8.6",
"sshpk": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
}
}
{
"name": "node-opcua-crypto",
"version": "4.3.0",
"description": "Crypto tools for Node-OPCUA",
"types": "./dist-types/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.js"
}
},
"./web": {
"import": {
"types": "./dist-types/source/index.d.ts",
"default": "./dist/source/index.mjs"
},
"require": {
"types": "./dist-types/source/index.d.ts",
"default": "./dist/source/index.js"
}
}
},
"scripts": {
"build:tsup": "tsup ./index.ts ./source/index.ts ./source/index_web.ts ./source_nodejs/index.ts --shims --format esm,cjs,iife --sourcemap --clean",
"build:types": "tsc -p tsconfig.types.json",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:demo": "node web/esbuild.mjs",
"build:clean": "npx rimraf ./dist ./dist-* *.tsbuildinfo",
"build:old": "npm run build:clean && npm run compile && node ../../scripts/prepare-package-json.mjs",
"build": "npm run build:tsup",
"prepare": "npm run build",
"tslint": "tslint --project . --fix",
"lint": "eslint . --ext .ts",
"makedoc": "npx typedoc index.ts --excludeNotDocumented --exclude \"_*\" --excludePrivate --excludeProtected --excludeExternals -out doc",
"cost-of-modules": "npx cost-of-modules --no-install",
"prettier-format": "prettier --config .prettierrc.js source/**/*.ts test/**/*.ts --write",
"ncu": "npx npm-check-updates -u -x env-paths,chalk",
"experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"makedoc": "npx typedoc packages/node-opcua-crypto/index.ts -out doc",
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">15.0"
},
"devDependencies": {
"@types/node": "^20.5.9",
"lorem-ipsum": "^2.0.8"
},
"dependencies": {
"@peculiar/webcrypto": "^1.4.3",
"@peculiar/x509": "^1.9.5",
"@types/jsrsasign": "^10.5.8",
"@types/sshpk": "^1.17.1",
"assert": "^2.0.0",
"better-assert": "^1.0.2",
"chalk": "^4.1.2",
"hexy": "0.3.5",
"jsrsasign": "^10.8.6",
"sshpk": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
}
}

0 comments on commit 0f883d9

Please sign in to comment.