-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "cloudflare-zone",
"version": "1.5.2",
"description": "Cloudflare Zone Updater",
"scripts": {
"build": "babel src --out-dir .",
"postversion": "git push && git push --tags",
"preversion": "npm run build && npm test",
"test": "mocha"
},
"bin": {
"cloudflare-zone": "bin/cloudflare-zone.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debitoor/cloudflare-zone.git"
},
"keywords": [
"cloudflare",
"zone",
"upload",
"bind",
"sync"
],
"main": "lib/cloudflare-zone.js",
"author": "Jonatan Pedersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/debitoor/cloudflare-zone/issues"
},
"homepage": "https://github.com/debitoor/cloudflare-zone#readme",
"devDependencies": {
"@debitoor/eslint-config-debitoor": "1.3.0",
"babel-cli": "6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-node6": "11.0.0",
"mocha": "3.4.1",
"mocha-eslint": "3.0.1"
},
"dependencies": {
"command-line-args": "4.0.4",
"dns-zonefile": "0.2.2",
"node-fetch": "1.6.3",
"qs": "6.4.0"
}
}