forked from anttiviljami/glob-json-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "glob-json-path",
"version": "0.5.0",
"author": "Viljami Kuosmanen <viljami@viljami.io>",
"license": "MIT",
"description": "Bash-like globbing for JSON objects.",
"bugs": {
"url": "https://github.com/anttiviljami/glob-json-path/issues"
},
"homepage": "https://github.com/anttiviljami/glob-json-path#readme",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "swc src/ -d . --config-file .swcrc",
"types": "tsc --declaration --outDir . src/index.ts",
"prepublishOnly": "npm run build && npm run types -- --emitDeclarationOnly",
"prettier": "prettier --write \"**/*.{ts,json,md}\"",
"lint": "prettier --check \"**/*.{ts,json,md}\"",
"prepare": "husky install"
},
"files": [
"*.js",
"*.d.ts",
"!*.test.ts",
"!*.test.js"
],
"keywords": [
"glob",
"jmespath",
"json",
"object"
],
"devDependencies": {
"@swc/cli": "^0.1.61",
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@types/glob-to-regexp": "^0.4.1",
"@types/jest": "^29.4.0",
"husky": "^8.0.0",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"glob-to-regexp": "^0.4.1"
}
}