-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@batuhanw/haf",
"version": "1.0.0",
"engines": {
"node": ">=16"
},
"description": "Fully typed, modern, cross-platform persistent JSON storage solution for NodeJS projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "npm run build -- --watch",
"test": "jest --runInBand",
"test:watch": "npm run test -- --watch",
"test:coverage": "jest --runInBand --coverage",
"build": "rimraf dist && tsc --build tsconfig.build.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BatuhanW/haf.git"
},
"author": {
"name": "Batuhan Wilhelm",
"email": "[email protected]",
"url": "https://github.com/BatuhanW"
},
"contributors": [
{
"name": "Floris Bernard",
"url": "https://github.com/flut1"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BatuhanW/haf/issues"
},
"homepage": "https://github.com/BatuhanW/haf#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.3",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-expect-type": "^0.3.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"fs-extra": "^11.2.0",
"rimraf": "^5.0.5"
},
"keywords": [
"haf",
"config",
"store",
"cli",
"typescript",
"typed",
"oclif",
"persistent"
]
}