-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 1.67 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
{
"name": "cctail",
"version": "1.6.0",
"description": "Salesforce Commerce Cloud logs remote tail",
"keywords": [
"Salesforce Commerce Cloud",
"Demandware"
],
"repository": {
"type": "git",
"url": "https://github.com/openmindlab/cctail.git"
},
"bugs": {
"url": "https://github.com/openmindlab/cctail/issues"
},
"main": "dist/cctail.js",
"license": "MIT",
"author": {
"name": "Fabrizio Giustina"
},
"bin": {
"cctail": "dist/cctail.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"log.conf-sample.json",
"webdav-permissions-sample.json",
"CHANGELOG.md"
],
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"axios": "0.27.2",
"colorette": "2.0.19",
"fluent-logger": "^3.4.1",
"moment": "2.29.4",
"prompts": "2.4.2",
"underscore.string": "3.3.6",
"yargs": "17.5.1"
},
"devDependencies": {
"@types/jest": "28.1.7",
"@types/node": "18.7.9",
"@types/prompts": "2.0.14",
"@types/underscore.string": "0.0.38",
"@typescript-eslint/parser": "5.33.1",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.7",
"eslint-plugin-mocha": "10.1.0",
"jest": "28.1.3",
"prettier-eslint": "15.0.1",
"ts-jest": "28.0.8",
"typescript": "4.7.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".history/"
],
"preset": "ts-jest"
}
}