forked from commaai/pandajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
49
50
51
52
53
54
55
{
"name": "@commaai/pandajs",
"version": "0.3.5",
"description": "JavaScript interface for communicating with Panda devices.",
"main": "lib/index.js",
"browser": "lib/browser.js",
"scripts": {
"test": "tape -r babel-register './src/**/*test.js' | tap-spec",
"watch": "nodemon -w src --exec npm run build",
"build": "babel ./src/ --ignore '**.test.js','test.js' --out-dir ./lib/",
"prepare": "npm run build",
"tape": "tape",
"tap-spec": "tap-spec",
"babel": "babel"
},
"bin": {
"dump-can": "./dump-can.js",
"control-panda": "./control-panda.js"
},
"keywords": [
"CAN",
"panda",
"comma.ai",
"javascript"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"escape-string-regexp": "^1.0.5",
"tap-spec": "^4.1.1",
"tape": "^4.9.0"
},
"repository": "https://github.com/commaai/pandajs",
"author": "Chris Vickery <[email protected]>",
"dependencies": {
"ap": "^0.2.0",
"babel-runtime": "^6.26.0",
"can-message": "^0.1.0",
"commander": "^2.15.1",
"is-browser": "^2.0.1",
"is-node": "^1.0.2",
"is-promise": "^2.1.0",
"performance-now": "^2.1.0",
"raf": "^3.4.0",
"thyming": "^0.1.1",
"weakmap-event": "^2.0.7"
},
"optionalDependencies": {
"usb": "^1.3.1"
}
}