UNPKG

1.53 kBJSONView Raw
1{
2 "name": "@commaai/pandajs",
3 "version": "0.3.3",
4 "description": "JavaScript interface for communicating with Panda devices.",
5 "main": "lib/index.js",
6 "browser": {
7 "lib/index.js": "lib/browser.js",
8 "usb": false
9 },
10 "scripts": {
11 "test": "tape -r babel-register './src/**/*test.js' | tap-spec",
12 "watch": "nodemon -w src --exec npm run build",
13 "build": "babel ./src/ --ignore '**.test.js','test.js' --out-dir ./lib/",
14 "prepare": "npm run build",
15 "tape": "tape",
16 "tap-spec": "tap-spec",
17 "babel": "babel"
18 },
19 "bin": {
20 "dump-can": "./dump-can.js",
21 "control-panda": "./control-panda.js"
22 },
23 "keywords": [
24 "CAN",
25 "panda",
26 "comma.ai",
27 "javascript"
28 ],
29 "license": "MIT",
30 "devDependencies": {
31 "babel-cli": "^6.26.0",
32 "babel-plugin-transform-runtime": "^6.23.0",
33 "babel-preset-es2015": "^6.24.1",
34 "babel-preset-flow": "^6.23.0",
35 "babel-preset-stage-0": "^6.24.1",
36 "escape-string-regexp": "^1.0.5",
37 "tap-spec": "^4.1.1",
38 "tape": "^4.9.0"
39 },
40 "repository": "https://github.com/commaai/pandajs",
41 "author": "Chris Vickery <chrisinajar@gmail.com>",
42 "dependencies": {
43 "ap": "^0.2.0",
44 "babel-runtime": "^6.26.0",
45 "can-message": "^0.1.0",
46 "commander": "^2.15.1",
47 "is-browser": "^2.0.1",
48 "is-node": "^1.0.2",
49 "is-promise": "^2.1.0",
50 "performance-now": "^2.1.0",
51 "raf": "^3.4.0",
52 "thyming": "^0.1.1",
53 "weakmap-event": "^2.0.7"
54 },
55 "optionalDependencies": {
56 "usb": "^1.3.1"
57 }
58}