-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.5 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.5 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@jmespath-community/jmespath",
"description": "Typescript implementation of the JMESPath Community specification",
"version": "1.3.0",
"author": {
"name": "JMESPath Community",
"email": "springcomp@users.noreply.github.com",
"url": "https://jmespath.site"
},
"type": "module",
"bin": {
"jp": "./dist/cli.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js",
"default": "./dist/index.umd.js"
},
"node": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.mjs",
"require": "./dist/cli.cjs"
}
},
"files": [
"dist/"
],
"homepage": "https://github.com/jmespath-community/typescript-jmespath",
"bugs": {
"url": "https://github.com/jmespath-community/typescript-jmespath/issues"
},
"keywords": [
"jmespath",
"jsonpath",
"query",
"json",
"jq",
"xpath"
],
"repository": {
"type": "git",
"url": "git://github.com/jmespath-community/typescript-jmespath"
},
"license": "MPL-2.0",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:ci": "biome check --diagnostic-level=error",
"prebuild": "rimraf dist",
"build": "tsup",
"dev": "ts-node src/cli.ts",
"perf": "node --expose-gc scripts/perf.js",
"start": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest",
"test:prod": "npm run lint:ci && npm run test",
"test:build": "npm run build && npm test -- test/build-artifacts.spec.ts",
"coverage": "vitest run --coverage",
"deploy-docs": "ts-node scripts/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "clean-publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@vitest/coverage-v8": "^4.0.6",
"clean-publish": "^6.0.1",
"coveralls-next": "^6.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"rimraf": "^6.1.0",
"shelljs": "^0.10.0",
"tinybench": "^5.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
}
}