forked from jmespath-community/typescript-jmespath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.65 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.65 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
{
"name": "@letsflow/jmespath",
"description": "Typescript implementation of JMESPath with additional functionality for LetsFlow",
"version": "1.1.5-jasny.1",
"publishConfig": {
"access": "public"
},
"homepage": "https://docs.letsflow.io/libraries/jmespath",
"contributors": [
{
"name": "Arnold Daniels",
"email": "arnold@jasny.net",
"url": "https://jasny.net"
},
{
"name": "JMESPath Community",
"email": "springcomp@users.noreply.github.com",
"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/"
],
"bugs": {
"url": "https://github.com/letsflow/jmespath/issues"
},
"keywords": [
"jmespath",
"jsonpath",
"query",
"json",
"jq",
"xpath"
],
"repository": {
"type": "git",
"url": "git://github.com/letsflow/jmespath"
},
"license": "MPL-2.0",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "npx eslint --ignore-path .eslintignore './{src,test}/**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"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": {
"@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",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitest/coverage-v8": "^2.1.8",
"clean-publish": "^3.4.5",
"coveralls-next": "^4.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"prettier-eslint": "^12.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": "^2.1.8"
},
"dependencies": {
"@noble/hashes": "^1.7.1",
"uuid": "^11.0.5"
}
}