-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "dummy",
"version": "0.1.6",
"description": "Performant and lightweight dummy data generation.",
"author": "Patrick Gerstacker",
"license": "MIT",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup src/index.ts --watch",
"test": "jest --runInBand",
"format": "prettier --write ."
},
"keywords": [
"dummy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gxrsti/dummy.git"
},
"bugs": {
"url": "https://github.com/gxrsti/dummy/issues"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^18.11.13",
"@types/react": "^18.0.26",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.2.5",
"tsup": "^6.4.0",
"typescript": "^4.8.4"
}
}