-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "@lifeiscontent/to-mocked",
"version": "1.0.0",
"description": "A TypeScript utility for simplifying mocked data creation. It creates proxy objects of any non-primitive type, throwing an error when an undefined property is accessed. Ideal for streamlining testing workflows and ensuring test data is accurately representative.",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"types": "lib/cjs/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"export": {
".": {
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
},
"import": {
"default": "./lib/mjs/index.js",
"types": "./lib/mjs/index.d.ts"
}
}
},
"scripts": {
"test": "vitest",
"build": "pnpm run '/^build:.*/'",
"build:mjs": "tsc --project tsconfig.mjs.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"release": "changeset publish"
},
"keywords": [
"vitest",
"mocking",
"testing",
"typescript"
],
"author": "Aaron Reisman <[email protected]> (https://lifeiscontent.net)",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.26.1",
"typescript": "5.0.4",
"vitest": "0.31.1"
},
"packageManager": "[email protected]"
}