-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.33 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
101
102
103
{
"name": "loopback-cron",
"version": "1.0.0",
"description": "loopback-cron",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"migrate": "node ./dist/migrate",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run build",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"prepublishOnly": "npm run test",
"precommit": "exit 0",
"release": "standard-version",
"conventional-changelog": "conventional-changelog",
"changelog": "conventional-changelog -k package.json -r 1 -n config/changelog/light.preset.js",
"release:changelog": "conventional-changelog -p angular -k package.json -r 2 | tail -n +2",
"get:versionFromBranch": "git branch | grep \\* | cut -d ' ' -f2 | sed -E \"s/(release|hotfix)\\/(v[0-9]+\\.[0-9]+\\.[0-9]+).*/\\2/g\"",
"version": "node -p -e \"require('./package.json').version\"",
"get:build": "git rev-list --count HEAD"
},
"repository": {
"type": "git"
},
"author": "Wikodit",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^2.3.4",
"@loopback/core": "^2.9.0",
"@loopback/cron": "^0.2.8",
"@loopback/openapi-v3": "^3.4.4",
"@loopback/repository": "^2.8.0",
"@loopback/rest": "^5.1.2",
"@loopback/rest-explorer": "^2.2.5",
"@loopback/service-proxy": "^2.3.3",
"@slack/webhook": "^5.0.3",
"ccxt": "^1.30.48",
"dotenv": "^8.2.0",
"loopback-connector-kv-redis": "^3.0.3",
"loopback-connector-postgresql": "^5.0.1",
"tslib": "^2.0.0",
"conventional-changelog": "^3.1.21",
"conventional-changelog-cli": "^2.0.34"
},
"devDependencies": {
"@loopback/build": "^6.0.0",
"@loopback/eslint-config": "^8.0.2",
"@loopback/testlab": "^3.1.8",
"@types/node": "^10.17.26",
"commitizen": "^4.1.2",
"cz-customizable": "github:Wikodit/cz-customizable#master",
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"source-map-support": "^0.5.19",
"typescript": "~3.9.5",
"utility-types": "^3.10.0"
},
"husky": {
"hooks": {
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/commitizen/commitizen.config.js"
}
},
"engineStrict": true
}