-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "@mini-code/request",
"version": "1.0.5",
"description": "基于 fetch API 的 HTTP 请求封装,内置中间件(内置 RC4 数据加解密、LZMA 数据压解缩中间件)机制、RESTFul API 支持。",
"scripts": {
"publish": "npm publish ./dist --access public",
"release": "npm run build:ts; npm run publish",
"build:ts": "rm -rf ./dist; tsc; npm run copy-files",
"copy-files": "NODE_ENV=production node ./scripts/copy-files-ts.js",
"start": "cd website; yarn; yarn dev",
"build": "cd website; yarn; yarn build",
"dev:server": "cd server-for-test; npm i; npm run start",
"test": "jest"
},
"peerDependencies": {
"@mini-code/base-func": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@mini-code/base-func": "^1.0.2",
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"fs-extra": "^8.1.0",
"jest": "^25.1.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/minimal-studio/request.git.git"
},
"author": "Alex",
"license": "MIT",
"dependencies": {
"lzma": "^2.3.2",
"rc4-ts": "^2.0.0",
"whatwg-fetch": "^3.0.0"
}
}