-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "@tarojs/plugin-mock",
"version": "0.0.9",
"description": "Taro 数据 Mock 插件",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run prod",
"dev": "tsc -w",
"prod": "tsc",
"clean": "rimraf dist",
"test": "jest",
"test:dev": "jest --watch"
},
"files": [
"src",
"dist",
"index.js",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro-plugin-mock.git"
},
"keywords": [
"Taro"
],
"author": "luckyadam",
"license": "MIT",
"bugs": {
"url": "https://github.com/NervJS/tarojs-plugin-mock/issues"
},
"homepage": "https://github.com/NervJS/tarojs-plugin-mock#readme",
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.8",
"jest": "^25.2.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"get-port": "^5.1.1",
"glob": "^7.1.6",
"http-proxy-middleware": "^1.0.3",
"path-to-regexp": "^6.1.0"
}
}