-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
80 lines (80 loc) · 2.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "robotnik",
"version": "0.3.0",
"description": "Robotnik is a visual programming library for nodebots.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "node utils/installcheck.js",
"postinstall": "gulp",
"start": "node_modules/.bin/electron .",
"webserver": "node webserver.js",
"dev": "node_modules/.bin/parallelshell \"node_modules/.bin/gulp watch\" \"node_modules/.bin/nodemon webserver.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/makenai/robotnik.git"
},
"author": {
"name": "Pawel Szymczykowski",
"email": "[email protected]"
},
"contributors": [
{
"name": "Brian Genisio",
"email": "<[email protected]"
},
{
"name": "David Resseguie",
"email": "[email protected]"
},
{
"name": "Linda Nichols"
},
{
"name": "Andrew Fisher",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/makenai/robotnik/issues"
},
"homepage": "https://github.com/makenai/robotnik",
"dependencies": {
"angular": "^1.3.14",
"angular-bootstrap": "^0.12.0",
"angular-pouchdb": "^2.0.6",
"angular-resource": "^1.3.15",
"angular-ui-router": "^0.2.14",
"blockly": "git+https://github.com/google/blockly.git#217c681b86b0f2df76c479c9efae62e6e5abcede",
"body-parser": "^1.12.3",
"bootstrap": "^3.3.6",
"browserify": "^9.0.3",
"electron-prebuilt": "^0.37.5",
"express": "^4.13.4",
"font-awesome": "^4.5.0",
"intercept-stdout": "^0.1.2",
"johnny-five": "^0.9.38",
"jquery": "^2.1.4",
"js-beautify": "^1.5.5",
"lodash": "^4.11.1",
"pouchdb": "^3.4.0",
"pouchdb-find": "^0.3.4",
"serialport": "^2.1.0",
"socket.io": "^1.4.5",
"strip-ansi": "^3.0.1"
},
"devDependencies": {
"es6ify": "^1.6.0",
"gulp": "^3.8.11",
"gulp-concat-json": "^1.0.0",
"gulp-uglify": "^1.1.0",
"gulp-watch": "^4.2.4",
"nodemon": "^1.9.1",
"parallelshell": "^2.0.0",
"partialify": "^3.1.3",
"robotnik-controls": "0.0.1",
"vinyl-source-stream": "^1.0.0"
}
}