-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 949 Bytes
/
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
{
"private": "true",
"name": "life-link-util",
"description": "Life-Link Friendschip-Schools utility belt",
"keywords": [],
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/lifelink1987/util.git"
},
"licenses": [
{
"type": "Unlicense",
"url": "http://unlicense.org/UNLICENSE"
}
],
"bin": {},
"scripts": {
"prepublish": "make prepublish",
"test": "make test"
},
"dependencies": {
"async": "^0.9.0",
"lodash": "~2.4.1",
"mysql": "~2.5.0",
"natural": "^0.1.28"
},
"optionalDependencies": {
"coffee-script": "~1.8.0"
},
"devDependencies": {
"chai": "~1.9.1",
"coffeelint": "~1.6.0",
"mocha": "~1.21.4",
"testem": "~0.6.18"
},
"publishConfig": {
"bin": {},
"optionalDependencies": {}
},
"config": {
"mysql": {
"host": "",
"user": "",
"password": "",
"database": ""
}
}
}