-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 955 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 955 Bytes
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
{
"name": "json-querier",
"version": "1.0.0",
"description": "Query JSON data like a pro.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc index.ts -t esnext -m esnext -d --allowSyntheticDefaultImports --moduleResolution node --outDir ./dist",
"publish-beta-public": "npm publish --tag beta --registry=https://registry.npmjs.com --workspaces",
"publish-beta-private": "npm publish --tag beta --workspaces",
"publish-public": "npm publish --registry=https://registry.npmjs.com --workspaces",
"publish-private": "npm publish --workspaces"
},
"keywords": [
"json",
"query",
"search",
"object",
"data structures"
],
"author": {
"name": "Rajaneesh R",
"email": "rajaneeshr@proton.me",
"url": "https://r-rajaneesh.vercel.app"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.14",
"jest": "^29.3.1"
}
}