-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1 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": "chrome-apps-serialport",
"version": "1.0.8",
"description": "A Chrome Apps-compatible implementation of the node-serialport module",
"main": "dist/chrome-apps-serialport.min.js",
"dependencies": {
"nwjs-j5-fix": "^1.0.6"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"rollup-plugin-terser": "^5.2.0"
},
"scripts": {
"lint": "eslint src",
"build": "npm run lint && rollup --config",
"publish-to-npm": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/djipco/chrome-apps-serialport.git"
},
"keywords": [
"serial",
"port",
"chrome app",
"nw.js",
"nw",
"chrome.serial"
],
"author": "Jean-Philippe Côté <[email protected]>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/djipco/chrome-apps-serialport/issues"
},
"files": [
"dist/chrome-apps-serialport.min.js",
"dist/chrome-apps-serialport.min.js.map",
"package.json",
"README.md"
]
}