This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.26 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gantree-core",
"version": "0.9.1",
"main": "src/lib",
"repository": "https://github.com/flex-dapps/gantree-core",
"author": "Flex Dapps",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint .",
"test": "jest",
"sync": "node . sync",
"clean": "node . clean",
"inject": "node . inject",
"key-combine": "node . key-combine",
"lintstaged": "lint-staged",
"docs": "jsdoc2md ./src/lib/gantree.js > docs/_generated/gantree.md"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": ">=10.15.2"
},
"pre-commit": [
"lintstaged"
],
"bin": {
"gantree-cli": "src/cli/gantree-cli/gantree-cli.js",
"gantree-key-combine": "src/cli/tools-cli/gantree-key-combine.js",
"gantree-inject": "src/cli/tools-cli/gantree-inject.js"
},
"files": [
"/ansible",
"/src",
"Pipfile",
"Pipfile.lock",
"python_requirements.txt"
],
"maintainers": [
{
"name": "Denver Flexdapps",
"email": "[email protected]",
"web": "http://www.flexdapps.com"
},
{
"name": "Ryan Miller",
"email": "[email protected]",
"web": "http://www.flexdapps.com"
},
{
"name": "Tom Nash",
"email": "[email protected]",
"web": "http://www.flexdapps.com"
}
],
"dependencies": {
"ajv": "^6.12.0",
"bignumber.js": "^9.0.0",
"commander": "^2.20.0",
"dotenv": "^8.2.0",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"json-bigint": "^0.3.0",
"json-diff": "^0.5.4",
"lodash.clonedeepwith": "^4.5.0",
"lodash.pick": "^4.4.0",
"make-error": "^1.3.6",
"make-error-cause": "^2.3.0",
"node-forge": "^0.9.0",
"ospath": "^1.2.2",
"ow": "^0.17.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.3.0",
"jsdoc-to-markdown": "^5.0.3",
"lint-staged": "10.0.7",
"minimist": "^1.2.5",
"mocha": "^6.2.3",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"tmp": "^0.1.0"
},
"resolutions": {
"lint-staged": "10.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverage": true
}
}