-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "cloudflare-dns",
"version": "1.0.5",
"description": "Extended CloudFlare API",
"author": "Luis Ávila <[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/luisfavila/cloudflare-dns"
},
"homepage": "https://github.com/luisfavila/cloudflare-dns",
"bugs": {
"url": "https://github.com/luisfavila/cloudflare-dns/issues"
},
"license": "MIT",
"main": "index.js",
"keywords": [
"cloudflare",
"api",
"dns",
"sshfp"
],
"type": "module",
"scripts": {
"lint": "eslint --ext js,jsx,json,mjs .",
"lint-fix": "eslint --ext js,jsx,json,mjs --fix .",
"start": "node -r esm .",
"test": "mocha -r esm tests/",
"coverage": "nyc --require esm mocha tests/"
},
"dependencies": {
"cloudflare": "^2.7.0",
"esm": "^3.2.25"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json-light": "^1.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"esm": {
"cjs": true
}
}