-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.96 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
{
"name": "middleware-composer",
"version": "1.0.0",
"description": "A function to compose middlewares with great typescript support",
"private": true,
"engines": {
"npm": "8.19.3",
"node": ">=12"
},
"scripts": {
"pre4pub": "rm -rf node_modules && npm i && npm run test-types && npm run build && cd .dist && npm install --package-lock-only && cd ..",
"build": "./node_modules/.bin/tsc --project ./tsconfig.build.json",
"dev": "./node_modules/.bin/tsc --project ./tsconfig.json --watch",
"test": "./node_modules/.bin/jest --runInBand --config jest.config.json",
"test-lint": "./node_modules/.bin/eslint -c ./eslint.json --ext .ts ./",
"test-types": "./node_modules/.bin/tsc --project ./tsconfig.json",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/czlowiek488/middleware-composer.git"
},
"bugs": {
"url": "https://github.com/czlowiek488/middleware-composer/issues"
},
"homepage": "https://github.com/czlowiek488/middleware-composer#readme",
"author": "Łukasz Klejszta",
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@types/jest": "29.2.2",
"@types/lodash": "^4.14.189",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"eslint": "8.9.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-no-only-tests": "2.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "41.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^7.0.4",
"jest": "29.3.1",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"typescript": "4.7.4"
},
"dependencies": {
"ts-pipe-compose": "^0.2.1"
},
"license": "UNLICENSED"
}