forked from umijs/umi-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "umi-request",
"version": "1.4.4",
"description": "A request tool based on fetch.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "[email protected]:umijs/umi-request.git"
},
"bugs": "https://github.com/umijs/umi-request/issues",
"scripts": {
"dev": "father-build --w",
"build": "father-build",
"test": "umi-test",
"test:watch": "umi-test --watch",
"test:cover": "umi-test --coverage",
"lint": "umi-lint src",
"ci": "npm run lint && npm run test:cover",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "rm -rf ./dist && npm run lint && npm run test && npm run build && np --no-cleanup --yolo --no-publish",
"precommit": "umi-lint --staged --prettier --fix"
},
"author": {
"name": "puwei",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"create-test-server": "2.3.1",
"debug": "^4.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"father-build": "^1.19.5",
"iconv-lite": "^0.4.24",
"jest": "^23.5.0",
"np": "5.0.2",
"prettier": "^2.3.0",
"query-string": "^6.9.0",
"typescript": "^3.0.3",
"umi": "^2.8.15",
"umi-lint": "^1.0.0-alpha.1",
"umi-plugin-library": "^1.1.6",
"umi-test": "^1.4.0",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"qs": "^6.9.1"
},
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md",
"types/index.d.ts"
],
"types": "types/index.d.ts"
}