-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.79 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
100
{
"name": "@slimio/cli",
"version": "0.5.1",
"description": "SlimIO Command Line Interface",
"main": "index.js",
"bin": {
"slimio": "./bin/index.js"
},
"scripts": {
"test": "cross-env psp && jest --coverage",
"prepublishOnly": "pkg-ok",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/CLI.git"
},
"keywords": [
"SlimIO",
"monitoring"
],
"files": [
"index.d.ts",
"bin/index.js",
"commands",
"src"
],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/CLI/issues"
},
"homepage": "https://github.com/SlimIO/CLI#readme",
"dependencies": {
"@slimio/addon-factory": "^0.5.0",
"@slimio/async-cli-spinner": "^0.5.2",
"@slimio/bundler": "^0.4.2",
"@slimio/config": "^0.17.0",
"@slimio/core": "^0.11.0",
"@slimio/installer": "^0.5.0",
"@slimio/is": "^1.5.1",
"@slimio/json-diff": "^0.1.1",
"@slimio/json-schema-prompt": "^1.0.1",
"@slimio/lazy": "^1.2.0",
"@slimio/lock": "^0.5.0",
"@slimio/manifest": "^0.9.1",
"@slimio/pretty-json": "^1.3.0",
"@slimio/pretty-stack": "^0.4.2",
"@slimio/stdin": "^1.0.3",
"@slimio/tcp-sdk": "^0.4.6",
"@slimio/utils": "^0.9.0",
"@slimio/validate-addon-name": "^1.2.0",
"cacache": "^15.0.5",
"dotenv": "^8.2.0",
"fast-levenshtein": "^2.0.6",
"httpie": "^1.1.2",
"kleur": "^4.0.2",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"make-promises-safe": "^5.1.0",
"ms": "^2.1.2",
"qoa": "^0.2.0",
"sade": "^1.7.3",
"yn": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"@slimio/psp": "^0.11.1",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jsdoc": "^3.6.4",
"pkg-ok": "^2.3.1"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-push": "cross-env eslint index.js src/**.js commands/**.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/fixtures/"
]
}
}