-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 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
57
58
59
60
61
{
"name": "@misaka.ink/fetch2",
"version": "1.4.1",
"description": "Fetch-based front-end middleware development model",
"main": "dist/fetch2.js",
"scripts": {
"start": "webpack-dev-server --colors --open --progress --config ./scripts/webpack.dev.js",
"build": "./node_modules/.bin/webpack --colors --progress --config ./scripts/webpack.prod.js",
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misaka-ink/fetch2.git"
},
"keywords": [
"fetch",
"middleware"
],
"author": "Xinyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/misaka-ink/fetch2/issues"
},
"homepage": "https://github.com/misaka-ink/fetch2#readme",
"dependencies": {
"@babel/runtime": "^7.7.6",
"@babel/runtime-corejs2": "^7.7.6",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^2.0.2",
"coveralls": "^3.0.9",
"express": "^4.17.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^25.1.0",
"jest-environment-jsdom": "^25.1.0",
"jest-environment-jsdom-global": "^1.2.1",
"multiparty": "^4.2.1",
"terser-webpack-plugin": "^1.4.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"publishConfig": {
"access": "public"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"testEnvironment": "jest-environment-jsdom-global"
}
}