-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 867 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 867 Bytes
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
{
"name": "range-export-cli",
"description": "Range Export",
"version": "1.1.0",
"scripts": {
"lint": "eslint **/*.js",
"fmt": "prettier --write *.js **/*.js"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-progress": "^3.9.0",
"emoji-toolkit": "^7.0.0",
"json-2-csv": "^3.10.3",
"linkify-string": "^4.0.2",
"linkifyjs": "^4.0.2",
"meow": "^9.0.0",
"range-sdk": "^1.6.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"prettier": "^1.17.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent"
},
"main": "cmd.js",
"directories": {
"lib": "lib"
},
"bin": {
"range-export-cli": "./cmd.js"
},
"license": "Apache 2",
"type": "module"
}