-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.38 KB
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
61
{
"name": "@onamfc/api-mocker",
"version": "1.1.0",
"description": "A lightweight TypeScript library for mocking API endpoints during frontend development",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"default": "./dist/index.esm.js"
}
},
"browser": "./dist/index.esm.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"dev": "rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"mock",
"api",
"endpoints",
"frontend",
"development",
"typescript"
],
"author": "onamfc",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"rollup": "^4.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"tslib": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onamfc/api-mocker.git"
},
"bugs": {
"url": "https://github.com/onamfc/api-mocker/issues"
},
"homepage": "https://github.com/onamfc/api-mocker#readme",
"publishConfig": {
"access": "public"
}
}