generated from JoshMerlino/ts-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "filestore-json",
"version": "1.1.8",
"description": "Easily sync JSON objects of any shape with the filesystem.",
"main": "lib/",
"types": "lib/",
"author": "Josh Merlino",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshMerlino/filestore-json.git"
},
"keywords": [
"filestore",
"persistant",
"json",
"json-config",
"filesystem"
],
"scripts": {
"watch-ts": "tsc -w",
"build": "tsc",
"test": "jest",
"prepare": "npm run build && npm test"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/mkdirp": "^2.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^4.29.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"concurrently": "^9.0.0",
"eslint": "^7.32.0",
"jest": "^27.0.1",
"ts-jest": "^27.0.1",
"typescript": "^4.3.5",
"typescript-eslint": "8.11.0"
},
"dependencies": {
"mkdirp": "^3.0.0"
}
}