-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 2.93 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": "@yggdrasilts/axiosfit",
"version": "0.9.2",
"author": "YggdrasilTS Team 🌳",
"contributors": [
"David Lopez <[email protected]>"
],
"license": "MIT",
"description": "Project inspired in Retrofit.",
"main": "dist/index.js",
"keywords": [
"typescript",
"axios",
"rxjs",
"promise",
"javascript"
],
"bugs": {
"url": "https://github.com/yggdrasilts/axiosfit/issues"
},
"homepage": "https://github.com/yggdrasilts/axiosfit",
"repository": {
"type": "git",
"url": "git+https://github.com/yggdrasilts/axiosfit.git"
},
"scripts": {
"allure:clean": "rimraf -rf allure-*",
"allure:serve": "run-s test allure:serve:cmd",
"allure:serve:cmd": "allure serve",
"build": "run-s clean lint test build:prod",
"build:prod": "tsc -p tsconfig.prod.json",
"build:test": "tsc -p tsconfig.test.json",
"changelog": "changelog -f CURRENT_CHANGES.md",
"commit": "git-cz",
"clean": "rimraf -rf allure* coverage dist documentation",
"clean:all": "run-s clean clean:all:cmd",
"clean:all:cmd": "rimraf -rf node_modules package-lock.json yarn.lock",
"clean:coverage": "rimraf -rf coverage",
"compodoc": "npx compodoc",
"format": "prettier --write \"src/**/*.ts\"",
"format:samples": "prettier --write \"samples/**/*.ts\"",
"lint": "eslint \"{src,apps,libs}/**/*.ts\" --fix",
"lint:test": "eslint \"test/**/*.ts\" --fix",
"prepublish": "run-s build",
"test": "run-s clean:coverage allure:clean build:test test:cmd",
"test:cmd": "DEBUG=testcontainers jest --config ./config/jest.config.js"
},
"dependencies": {
"@yggdrasilts/volundr": "^0.1.11",
"axios": "^0.21.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@compodoc/compodoc": "^1.1.11",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"allure-commandline": "^2.13.0",
"cz-conventional-changelog": "^3.1.0",
"cz-customizable": "^6.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"express": "^4.17.1",
"generate-changelog": "^1.8.0",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-allure": "^0.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"testcontainers": "^2.6.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.9.0"
},
"directories": {
"test": "test"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/path/to/my/config.js"
}
}
}