-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.59 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
{
"name": "@feugene/layer-request",
"version": "1.0.11",
"description": "Request with a config layers",
"keywords": [
"request"
],
"license": "MIT",
"homepage": "https://github.com/efureev/layer-request",
"scripts": {
"clean": "rimraf dist",
"declarations": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json && yarn rename",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"build": "npm-run-all -l clean -p build:esm build:cjs declarations",
"rename": "ts-node ./.scripts/rename.ts",
"test": "jest",
"coverage": "jest --coverage",
"lint": "prettier --config ./.prettierrc --write src/*.ts src/**/*.ts",
"prepare": "husky install"
},
"files": [
"src",
"dist",
"tsconfig.json",
"package.json"
],
"module": "./dist/esm/index.mjs",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"husky": "^7.0.4",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@feugene/mu": "^4.1.7",
"axios": "^0.27.2"
},
"nyc": {
"extension": [
".ts"
]
},
"browserslist": [
"last 2 versions",
"not ie 11",
"not op_mini all"
],
"typesVersions": {
">=4.2": {
"*": [
"dist/types/*"
]
}
}
}