-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
{
"name": "cloudflare-cli-node",
"version": "0.7.0",
"description": "Cloudflare API CLI Interface with Node.js",
"bin": {
"cf": "bin/cf"
},
"main": "lib/cli.js",
"dependencies": {
"@babel/runtime": "^7.12.5",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"csv-writer": "^1.6.0",
"form-data": "^3.0.0",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"node-fetch": "^2.6.7",
"ora": "^4.1.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@10up/eslint-config": "^2.2.0",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"core-js": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^37.9.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"istanbul": "^0.4.5",
"mocha": "^9.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"temp": "^0.9.4"
},
"scripts": {
"build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"clean": "rimraf lib",
"cover": "cross-env BABEL_ENV=commonjs istanbul cover _mocha -- --require babel-core/register --recursive",
"lint": "eslint src test",
"postversion": "git push && git push --tags",
"pre-publish": "npm run clean && npm run lint && npm run test && npm run build",
"preversion": "npm run clean && npm run lint && npm test",
"test": "npm run build && cross-env BABEL_ENV=commonjs mocha --require @babel/register --recursive",
"version": "npm run build && git add -A .",
"watch": "npm run clean && cross-env BABEL_ENV=commonjs babel src --watch --out-dir lib"
},
"author": "Ivan Kristianto",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:ivankristianto/cloudflare-cli-node.git"
},
"keywords": [
"cloudflare",
"cli"
],
"bugs": {
"url": "https://github.com/ivankristianto/cloudflare-cli-node/issues"
}
}