-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "socketcan",
"author": {
"name": "Sebastian Haas",
"email": "[email protected]"
},
"description": "A SocketCAN abstraction layer for NodeJS.",
"version": "4.0.5",
"license": "MIT",
"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",
"test": "mocha"
},
"devDependencies": {
"@types/node": "^16.18.3",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"mocha": "10.1.0",
"nyc": "^15.0.1",
"typescript": "4.8.4",
"eslint": "8.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "^2.4.1"
},
"dependencies": {
"nan": ">2.21.0",
"node-gyp": ">=9.3.0",
"xml2js": ">=0.2.0"
},
"main": "dist/socketcan.js",
"files": [
"binding.gyp",
"dist",
"samples",
"src",
"native",
"docs"
],
"os": [
"linux"
]
}