-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "n-ftdi",
"version": "1.3.10",
"description": "FTDI bindings for N-API Node.js, with the same interface as the managed .NET wrapper.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test-no-devices": "mocha tests/no-devices.test.js",
"test-one-device": "mocha --expose_gc tests/one-device.test.js",
"install": "node-gyp rebuild",
"eslint": "eslint index.js ./tests/*.js",
"eslint-fix": "eslint index.js ./tests/*.js --fix"
},
"keywords": [
"ftdi",
"usb",
"device"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/Incont/n-ftdi.git"
},
"gypfile": true,
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.9",
"eslint": "^6.8.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^15.12.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^10.1.0",
"node-gyp": "^9.3.0"
}
}