-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
{
"name": "@alova/scene",
"version": "1.1.0",
"description": "request strategy with alova.js",
"homepage": "https://github.com/alovajs/scene",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"cp:files": "npm run cp:files --workspaces",
"release": "npm run cp:files && npm run release --workspaces",
"coveralls": "npm run test:coverage && coveralls < coverage/lcov.info",
"commit": "git-cz && git push",
"lint": "eslint --ext .ts,.js src/**",
"lint:fix": "eslint --ext .ts,.js src/** --fix"
},
"author": "JOU-amjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/alovajs/scene.git"
},
"bugs": {
"url": "https://github.com/alovajs/scene/issues"
},
"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",
"@testing-library/react": "^14.0.0",
"@testing-library/vue": "^7.0.0",
"@types/eventsource": "^1.1.15",
"@types/jest": "^29.2.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vue/vue3-jest": "^29.2.4",
"alova": "^2.21.1",
"babel-jest": "^29.2.2",
"commitizen": "^4.3.0",
"commitlint": "^17.5.1",
"coveralls": "^3.1.1",
"cpy": "^8.1.2",
"cross-env": "5.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eventsource": "^2.0.2",
"husky": "^8.0.3",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"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.6",
"svelte": "^3.52.0",
"svelte-jester": "^2.3.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vue": "^3.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}