-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 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
62
63
64
65
66
67
68
69
70
{
"name": "simule",
"version": "2.0.3",
"description": "A Node.js TypeScript fixture generator using ts-morph and faker.js for runtime type inference. Browser incompatible.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=14.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser-dynamic.d.ts",
"import": "./dist/browser-dynamic.js",
"require": "./dist/browser-dynamic.js"
}
},
"keywords": [
"typescript",
"fixture",
"faker",
"generator",
"ts-morph"
],
"author": "Anupam Srivastava",
"repository": {
"type": "git",
"url": "https://github.com/meliodas113/simule.git"
},
"bugs": {
"url": "https://github.com/meliodas113/simule/issues"
},
"homepage": "https://github.com/meliodas113/simule/blob/main/README.markdown",
"scripts": {
"build": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"test": "jest",
"prepublishOnly": "npm run build:prod",
"size": "bundle-size",
"analyze": "node scripts/analyze.js"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"ts-morph": "^23.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"bundle-size": "^1.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}