-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.23 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.23 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "soem-node",
"version": "1.2.1",
"description": "Bindings Node-API pour SOEM (Simple Open EtherCAT Master)",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "tsc && node-gyp configure build",
"clean": "rimraf dist build node_modules/.cache",
"prepare": "npm run build",
"test": "jest test/basic.test.ts test/soem-master.test.ts test/ethercat-utils-simple.test.ts",
"test:watch": "jest --watch test/basic.test.ts test/soem-master.test.ts test/ethercat-utils-simple.test.ts",
"test:coverage": "jest --coverage test/basic.test.ts test/soem-master.test.ts test/ethercat-utils-simple.test.ts",
"test:ci": "jest --ci --coverage --watchAll=false test/basic.test.ts test/soem-master.test.ts test/ethercat-utils-simple.test.ts",
"test:all": "jest",
"lint": "eslint src/**/*.ts types/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts types/**/*.ts",
"security": "npm audit",
"test-ci": "bash scripts/test-ci.sh",
"test-ci:windows": "powershell -ExecutionPolicy Bypass -File scripts/test-ci.ps1",
"example": "node examples/scan-and-read.js",
"list-interfaces": "node examples/list-interfaces.js",
"auto-scan": "node examples/auto-scan.js",
"interface-manager": "node examples/interface-manager.js",
"prepublishOnly": "npm run clean && npm run build && npm test",
"release": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1",
"release:linux": "bash scripts/release.sh",
"release:patch": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1 patch",
"release:minor": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1 minor",
"release:major": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1 major",
"production-check": "powershell -ExecutionPolicy Bypass -File scripts/production-check.ps1",
"production-check:linux": "bash scripts/production-check.sh"
},
"gypfile": true,
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"node-gyp": "^10.0.1",
"eslint": "^8.50.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.1.1",
"typescript": "^5.6.0"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"os": [
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MXASoundNDEv/SOEM-Nodejs.git"
},
"bugs": {
"url": "https://github.com/MXASoundNDEv/SOEM-Nodejs/issues"
},
"homepage": "https://github.com/MXASoundNDEv/SOEM-Nodejs#readme",
"keywords": [
"ethercat",
"soem",
"fieldbus",
"industrial",
"automation",
"realtime",
"master",
"node-addon-api",
"typescript",
"cross-platform",
"network",
"interface",
"discovery"
],
"author": "MXA.K",
"license": "GPL-2.0-or-later",
"files": [
"dist/",
"build/Release/soem_addon.node",
"types/",
"scripts/",
"examples/",
"src",
"include",
"external",
"LICENSE",
"README.md",
"CHANGELOG.md",
"binding.gyp"
]
}