-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "@huolala-tech/request",
"version": "1.1.4",
"description": "This is just a request library to support browsers and MiniProgram platforms.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c --watch",
"lint": "eslint src",
"format": "prettier src -w",
"prepublishOnly": "yarn build",
"test": "jest src --coverage"
},
"files": [
"dist"
],
"author": "YanagiEiichi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^3.0.0",
"rollup": "^3.26.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@huolala-tech/custom-error": "^1.0.0"
}
}