-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
46 lines (46 loc) · 968 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
{
"name": "dnspod-ddns",
"description": "A DNSPOD DDNS Client",
"version": "0.2.4",
"keywords": [
"dnspod",
"ddns",
"update record"
],
"homepage": "https://github.com/ohsc/dnspod-ddns",
"author": {
"name": "Chao Shen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ohsc/dnspod-ddns.git"
},
"bugs": {
"url": "http://github.com/ohsc/dnspod-ddns/issues"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/ohsc/dnspod-ddns/raw/master/LICENSE.md"
}
],
"main": "./lib/index.js",
"bin": {
"dnspod-ddns": "./bin/cli.js"
},
"dependencies": {
"dnspod-client": "0.1.3",
"commander": "2.1.0",
"async": "0.2.10",
"log4js": "0.6.9"
},
"devDependencies": {
"mocha": ">= 1.17.1",
"jslint": ">= 0.2.7"
},
"scripts": {
"test": "node_modules/.bin/mocha test/test.js"
},
"readmeFilename": "README.md"
}