-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
38 lines (38 loc) · 1003 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
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "p5.serialserver",
"version": "0.0.34",
"description": "A serial server for p5.serialport.js",
"author": "Shawn Van Every <[email protected]>, Jiwon Shin <[email protected]>",
"main": "./src/p5.serialserver.js",
"bin": {
"p5serial": "./startserver.js"
},
"repository": {
"type": "git",
"url": "https://github.com/p5-serial/p5.serialserver"
},
"bugs": {
"url": "https://github.com/p5-serial/p5.serialserver/issues"
},
"keywords": [
"serial",
"p5.js",
"arduino"
],
"dependencies": {
"serialport": "^9.2.8",
"ws": "^7.0"
},
"license": "GPL",
"devDependencies": {
"babel-minify": "^0.5.2",
"browserify": "^17.0.0",
"jsdoc": "^3.6.3",
"watchify": "^4.0.0"
},
"scripts": {
"doc": "jsdoc -c jsdoc.conf.json",
"build": "browserify src/index.js -s p5.serialserver -r | minify > dist/p5.serialserver.min.js",
"watch": "watchify src/index.js -s p5.serialserver -o dist/p5.serialserver.js"
}
}