forked from cloudydeno/jmespath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.96 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.96 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
96
97
98
99
100
{
"name": "@metrichor/jmespath",
"description": "Typescript implementation of the JMESPath spec (100% compliant)",
"version": "0.1.10",
"author": {
"name": "Oxford Nanopore Technologies",
"email": "support@nanoporetech.com",
"url": "https://nanoporetech.com"
},
"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/nanoporetech/jmespath-ts"
},
"license": "MPL-2.0",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint --ignore-path .eslintignore './{src,test}/**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"prebuild": "rimraf dist",
"perf": "node scripts/perf.js",
"build": "tsc --outDir dist/lib -d --module commonjs --declarationDir dist/types && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node scripts/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node scripts/semantic-release-prepare",
"precommit": "lint-staged"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"benchmark": "^2.1.4",
"colors": "^1.4.0",
"commitizen": "^4.2.1",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.5.2",
"jest-cli": "^26.5.2",
"jest-config": "^26.5.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"prompt": "^1.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.1.2",
"shelljs": "^0.8.4",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"dependencies": {}
}