-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.44 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.44 KB
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
{
"name": "dctl",
"version": "5.4.3",
"description": "Get your Dragonchain out of it's shell.",
"author": "Dragonchain, Inc. <support@dragonchain.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dragonchain/dctl.git"
},
"bugs": {
"url": "https://github.com/dragonchain/dctl/issues"
},
"engines": {
"node": ">=10"
},
"preferGlobal": true,
"bin": {
"dctl": "./src/dctl.js"
},
"dependencies": {
"commander": "^4.1.1",
"del": "^5.1.0",
"dragonchain-sdk": "^4.3.3",
"get-stdin": "^7.0.0",
"ini": "^1.3.5",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"prettier": "^1.19.1"
},
"scripts": {
"format": "prettier --write src/**/* src/*",
"lint": "eslint --ext .js --format unix src/ && prettier --check src/**/* src/*"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 180
},
"eslintConfig": {
"parser": "espree",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"browser": false,
"node": true,
"es6": true
},
"rules": {
"no-console": "off",
"max-len": [
"error",
{
"code": 200
}
]
}
}
}