-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "sphero-joystick",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "gulp webpack",
"build:min": "gulp webpack --min",
"build:watch": "gulp webpack --watch",
"build:browser-sync": "gulp webpack --browser-sync",
"server": "sphero-websocket",
"server-test": "sphero-websocket --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shundroid/sphero-joystick.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shundroid/sphero-joystick/issues"
},
"homepage": "https://github.com/shundroid/sphero-joystick#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"browser-sync": "^2.12.10",
"css-loader": "^0.23.1",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"minimist": "^1.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"dependencies": {
"sphero-websocket": "^0.2.0"
}
}