-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.85 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": "@alova/adapter-xhr",
"version": "1.0.6",
"description": "XMLHttpRequest adapter for alova.js",
"homepage": "https://alova.js.org",
"main": "dist/alova-adapter-xhr.esm.js",
"module": "dist/alova-adapter-xhr.esm.js",
"types": "typings/index.d.ts",
"type": "module",
"keywords": [
"hooks",
"vuejs",
"typescript",
"vue",
"request",
"vue3",
"superagent",
"alova",
"react",
"svelte",
"axios"
],
"jsdelivr": "dist/alova-adapter-xhr.umd.min.js",
"unpkg": "dist/alova-adapter-xhr.umd.min.js",
"scripts": {
"clean": "rimraf ./dist",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .ts,.js src/**",
"lint:fix": "eslint --ext .ts,.js src/** --fix",
"build:esm": "cross-env NODE_ENV=development rollup -c ./config/rollup.config.esm.cjs",
"build:umd": "cross-env NODE_ENV=development rollup -c ./config/rollup.config.umd.cjs",
"build:umd.min": "cross-env NODE_ENV=production rollup -c ./config/rollup.config.umd.cjs",
"build": "npm run clean && npm run build:esm && npm run build:umd && npm run build:umd.min",
"release": "semantic-release",
"coveralls": "npm run test:coverage && coveralls < coverage/lcov.info",
"commit": "git-cz && git push"
},
"publishConfig": {
"access": "public"
},
"author": "JOU-amjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/alovajs/adapter-xhr.git"
},
"bugs": {
"url": "https://github.com/alovajs/adapter-xhr/issues"
},
"files": [
"dist",
"typings/*.d.ts"
],
"devDependencies": {
"@alova/mock": "^1.5.1",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"alova": "^2.16.2",
"babel-jest": "^29.2.2",
"commitlint": "^17.5.1",
"coveralls": "^3.1.1",
"cross-env": "5.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"form-data": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"msw": "^0.49.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"rimraf": "2.6.2",
"rollup": "^2.74.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"ts-jest-mock-import-meta": "^1.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vue": "^3.2.47"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}