-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 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
40
41
{
"name": "machinepack-firebase",
"version": "3.1.0",
"description": "This machinepack lets you commuicate with the Firebase API to store and sync your data in realtime.",
"scripts": {
"test": "node ./node_modules/test-machinepack-mocha/bin/testmachinepack-mocha.js"
},
"keywords": [
"Firebase",
"machines",
"machinepack"
],
"author": "Nile Frater",
"license": "MIT",
"dependencies": {
"JSON": "^1.0.0",
"firebase": "^2.2.3",
"machine": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nilefrater/machinepack-firebase.git"
},
"devDependencies": {
"test-machinepack-mocha": "^0.2.2"
},
"machinepack": {
"iconSrc": "https://s3-us-west-1.amazonaws.com/machinepack-icons/machinepack_firebase.png",
"friendlyName": "Firebase",
"machineDir": "machines/",
"machines": [
"set-data",
"push-data",
"update-data",
"read-value",
"remove-value",
"string-to-json",
"json-to-string"
]
}
}