-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 917 Bytes
/
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": "@probablyarth/jason",
"version": "1.0.5",
"description": "Typesafe ORM for JSON files.",
"scripts": {
"build": "tsc",
"test": "jest"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"prepare": "npm run build",
"keywords": [
"json",
"orm",
"json-orm",
"jsondb",
"db"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/probablyArth/jason"
},
"bugs": {
"url": "https://github.com/probablyArth/jason/issues",
"email": "[email protected]"
},
"author": "probablyarth <[email protected]> (https://linkedin.com/in/probablyarth)",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@probablyarth/jason": "^1.0.4",
"@types/node": "^18.14.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}