-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name" : "node-red-node-mysql",
"version" : "0.0.16",
"description" : "A Node-RED node to read and write to a MySQL database",
"dependencies" : {
"mysql" : "^2.13.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/storage/mysql"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "mysql" ],
"node-red" : {
"nodes" : {
"mysql": "68-mysql.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org"
},
"contributor": [
{
"name": "RyanSH100",
"url": "https://github.com/ryansh100"
}
],
"scripts": {
"test": "mocha '../../test/storage/mysql/mysql_spec.js'"
},
"devDependencies": {
"mocha": "^3.2.0",
"proxyquire": "^1.7.10",
"should": "^11.1.2",
"should-sinon": "0.0.5",
"sinon": "^1.17.7"
}
}