-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1004 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
43
{
"name": "@nclsndr/visit-json-tree",
"version": "0.0.1",
"description": "Asynchronously visit a JSON tree based on pattern matching",
"author": "nclsndr<[email protected]>",
"keywords": [
"json",
"visit",
"traverse",
"generator",
"async",
"async generator",
"iterator",
"pattern matching",
"typescript"
],
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nclsndr/visit-json-tree.git"
},
"homepage": "https://github.com/nclsndr/visit-json-tree#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest",
"pack:dry-run": "npm pack --dry-run"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.29.8",
"prettier": "^2.8.7",
"typescript": "^5.0.3",
"vitest": "^0.29.8"
}
}