-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "node-opcua-crypto-project",
"private": true,
"version": "4.2.0",
"description": "Crypto tools for Node-OPCUA",
"scripts": {
"build:crypto": "cd packages/node-opcua-crypto && npm run build",
"build:test": "cd packages/node-opcua-crypto-test && npm run build",
"build": "npm run build:crypto && npm run build:test",
"test": "cd packages/node-opcua-crypto-test && npm run test",
"lint": "eslint . --ext .ts",
"makedoc": "cd packages/node-opcua-crypto && npm run makedoc",
"cost-of-modules": "npx cost-of-modules --no-install",
"prettier-format": "prettier --config .prettierrc.js packages/**/source/**/*.ts packages/**/test/**/*.ts --write",
"ncu": "npx npm-check-updates --deep -u -x env-paths,chalk",
"experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext",
"publish": "npx -y lerna publish",
"esm:test": "cd packages/node-opcua-crypto-test && npm run test:esm2"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">=16.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"
},
"workspaces": [
"packages/node-opcua-crypto-test",
"packages/node-opcua-crypto",
"packages/node-opcua-crypto-web"
],
"dependencies": {
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^11.0.1",
"should": "^13.2.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}