forked from google/web-serial-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 883 Bytes
/
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
{
"name": "serial-polyfill",
"version": "1.0.4",
"description": "An implementation of the [Serial API](https://wicg.github.io/serial) on top of the [WebUSB API](https://wicg.github.io/webusb) for use with USB-to-serial adapters. Use of this library is limited to hardware and platforms where the device is accessible via the WebUSB API because it has not been claimed by a built-in device driver. This project will be used to prototype the design of the Serial API.",
"main": "serial.js",
"scripts": {
"test": "eslint serial.js"
},
"repository": {
"type": "git",
"url": "sso://team/deviceapi-team/serial-polyfill"
},
"eslintconfig": {
"extends": [
"eslint:recommended",
"google"
]
},
"author": "James C Hollyer",
"license": "Apache",
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-google": "^0.11.0",
}
}