-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "remockjs",
"version": "0.1.3",
"author": "johnnywang",
"description": "ReMock.js is a simulation data generator which is reproduced from [Mock.js](https://github.com/nuysoft/Mock)",
"main": "dist/remock.min.js",
"module": "dist/remock.esm.min.js",
"unpkg": "dist/remock.min.js",
"jsdelivr": "dist/remock.min.js",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js -w",
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.13.9",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"cross-env": "^7.0.3",
"rollup": "^2.28.1",
"rollup-plugin-terser": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnnywang1994/remockjs.git"
},
"homepage": "https://github.com/johnnywang1994/remockjs#readme",
"bugs": {
"url": "https://github.com/johnnywang1994/remockjs/issues"
},
"types": "index.d.ts",
"keywords": [
"mockjs",
"remockjs",
"js",
"mock",
"xhr intercept"
]
}