-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
{
"name": "fixturio",
"version": "1.0.3",
"description": "Fixtures",
"keywords": [
"Persistence",
"fixture",
"test",
"testing"
],
"main": "index.js",
"types": "index.d.ts",
"author": "pashak09",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"build": "rimraf ./dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:dts": "dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --project tsconfig.json",
"tests": "jest",
"tests:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/pashak09/fixturio"
},
"dependencies": {
"glob": "^10.3.14"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.44.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsc-alias": "^1.8.9",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.12.1"
},
"files": [
"**/*.js",
"index.d.ts"
]
}