-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.19 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@jmespath-community/jmespath",
"description": "Typescript implementation of the JMESPath Community specification",
"version": "1.1.5",
"author": {
"name": "JMESPath Community",
"email": "[email protected]",
"url": "https://jmespath.site"
},
"main": "dist/jmespath.umd.js",
"module": "dist/jmespath.esm.js",
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"files": ["dist/"],
"homepage": "https://github.com/nanoporetech/jmespath-ts#readme",
"bugs": {
"url": "https://github.com/nanoporetech/jmespath-ts/issues",
"mail": ""
},
"keywords": ["jmespath", "jsonpath", "query", "json", "jq", "xpath"],
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/jmespath-community/typescript-jmespath"
},
"license": "MPL-2.0",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:ci": "biome check --diagnostic-level=error",
"prebuild": "npx rimraf dist",
"build": "npx tsc --outDir dist/lib -d --module commonjs && npx rollup -c rollup.config.ts",
"perf": "node --expose-gc scripts/perf.js",
"start": "npx rollup -c rollup.config.ts -w",
"test": "vitest --run",
"test:watch": "vitest",
"test:prod": "npm run lint && npm run test",
"coverage": "vitest run --coverage",
"deploy-docs": "ts-node scripts/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"prepack": "npx clear-package-json package.json --output ./package.json"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^8.2.1",
"@vitest/coverage-v8": "^3.0.8",
"clean-publish": "^3.4.5",
"coveralls-next": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup-plugin-typescript2": "^0.34.1",
"shelljs": "^0.8.4",
"tinybench": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.3.2",
"vitest": "^3.0.8"
}
}