forked from cloudflare/node-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cloudflare",
"version": "2.5.1",
"description": "CloudFlare API client",
"author": "Terin Stock <[email protected]>",
"bugs": {
"url": "https://github.com/cloudflare/node-cloudflare/issues"
},
"dependencies": {
"autocreate": "^1.1.0",
"es-class": "^2.1.1",
"got": "^6.3.0",
"https-proxy-agent": "^2.1.1",
"object-assign": "^4.1.0",
"should-proxy": "^1.0.4",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.15.0",
"eslint-config-es": "^0.8.12",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-eslint-comments": "^2.0.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-notice": "^0.5.6",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-security": "^1.4.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^3.4.2",
"nyc": "^10.3.2",
"power-assert": "^1.4.4",
"prettier": "^1.9.2",
"testdouble": "^3.1.1"
},
"homepage": "https://github.com/cloudflare/node-cloudflare",
"keywords": [
"cloudflare",
"api"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/node-cloudflare.git"
},
"scripts": {
"lint": "eslint '{index,{lib,test}/**/*}.js'",
"test": "nyc --reporter=lcov --reporter=text-summary mocha --require intelli-espower-loader --recursive test",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"index.js",
"lib"
],
"xo": {
"space": true,
"rules": {
"unicorn/filename-case": 0
}
},
"publishConfig": {
"tag": "next"
}
}