-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.77 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
{
"name": "socketcan",
"author": {
"name": "Sebastian Haas",
"email": "sebastian@sebastianhaas.info"
},
"description": "A SocketCAN abstraction layer for NodeJS.",
"version": "4.2.3",
"license": "MIT",
"keywords": [
"can",
"canbus",
"socketcan",
"linux",
"native",
"addon",
"iobroker",
"automotive"
],
"homepage": "https://github.com/sebi2k1/node-can#readme",
"bugs": {
"url": "https://github.com/sebi2k1/node-can/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/sebi2k1/node-can.git"
},
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"build:ts": "tsc",
"build:all": "npm run build && npm run build:ts",
"lint": "eslint --fix '*/**/*.{js,ts}'",
"install": "node-gyp rebuild",
"prepare": "npm run build:ts",
"test": "mocha",
"coverage": "nyc npm test"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^26.0.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^17.0.0",
"mocha": "^11.0.0",
"nyc": "^18.0.0",
"prettier": "^3.0.0",
"typescript": "^6.0.0"
},
"dependencies": {
"node-addon-api": "^8.8.0",
"node-gyp": ">=12.0.0",
"xml2js": ">=0.6.2"
},
"main": "dist/socketcan.js",
"types": "dist/socketcan.d.ts",
"files": [
"binding.gyp",
"dist",
"samples",
"src",
"native",
"docs"
],
"engines": {
"node": ">=22.0.0"
},
"os": [
"linux"
],
"overrides": {
"diff": "^9.0.0",
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0"
}
}