-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "canopen",
"version": "6.1.2",
"description": "CANopen implementation for Javascript",
"main": "index.js",
"scripts": {
"test": "mocha ./test/test*.js ./test/protocol/test*.js",
"test:examples": "mocha ./test/examples/test*.js",
"jsdoc": "jsdoc -c .jsdoc.json -R README.md source",
"lint": "eslint index.js examples source test",
"lint:fix": "npm run lint -- --fix"
},
"author": "Wilkins White <ww@novadynamics.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DaxBot/node-canopen.git"
},
"bugs": {
"url": "https://github.com/DaxBot/node-canopen/issues"
},
"homepage": "https://daxbot.com/open-source",
"keywords": [
"canopen",
"can-bus"
],
"dependencies": {
"ini": "^3.0.1",
"node-crc": "^1.3.2"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"docdash": "^2.0.2",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^38.1.6",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.2",
"mocha": "^9.2.2",
"socketcan": "^3.0.0"
},
"engines": {
"node": ">=12"
}
}