-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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": "ks-mock",
"version": "1.3.5",
"description": "mock server 模拟后端API接口",
"main": "index.js",
"scripts": {
"mock": "node ./public/server.js",
"prepublishOnly": "npm run mockData && npm run build",
"build": "rollup -c -i ./src/index.ts -o index.js",
"typedoc": "typedoc --options typedoc.ts",
"mockData": "tsc src/datas.ts --outdir public",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kscript/mock.git"
},
"keywords": [
"js",
"api",
"mock",
"mockjs",
"json-server"
],
"author": "kscript",
"license": "MIT",
"bugs": {
"url": "https://github.com/kscript/mock/issues"
},
"homepage": "https://github.com/kscript/mock#readme",
"dependencies": {
"fs": "0.0.1-security",
"https": "^1.0.0",
"json-server": "^0.14.0",
"mockjs": "^1.0.1-beta3",
"path": "^0.12.7",
"request": "^2.88.0"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"jest": "^24.9.0",
"multer": "^1.4.4",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "*",
"typedoc": "^0.14.2",
"typedoc-plugin-as-member-of": "^1.0.2",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "^3.4.5"
}
}