-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 932 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 932 Bytes
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
{
"name": "mockr.js",
"license": "MIT",
"version": "1.0.2",
"description": "mockr.js is a lightweight npm package that simplifies the generation of realistic mock data for various use cases in development and testing.",
"repository": {
"url": "git+https://github.com/slxca/mockr.js.git"
},
"author": "slxca <contact@s-luca.com> (https://s-luca.com)",
"funding": "https://github.com/sponsors/slxca",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/slxca/mockr.js/issues",
"email": "bugs@s-luca.com"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/** --format cjs,esm --dts",
"lint": "tsc"
},
"devDependencies": {
"tsup": "^8.1.0",
"typescript": "^5.5.2"
}
}