-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jsonpathly",
"version": "2.0.2",
"description": "Query json with jsonpath expressions",
"browser": "dist/index.web.js",
"main": "dist/index.node.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"gen": "antlr4 -Dlanguage=JavaScript ./src/parser/generated/JSONPath.g4",
"test": "mocha --require ts-node/register --timeout 60000 --exit --no-cache tests/*.ts",
"build": "webpack",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/atamano/jsonpathly.git"
},
"keywords": [
"jsonpath",
"typescript",
"json",
"path"
],
"author": "Antoine Tamano",
"license": "MIT",
"bugs": {
"url": "https://github.com/atamano/jsonpathly/issues"
},
"homepage": "https://github.com/atamano/jsonpathly#readme",
"devDependencies": {
"@types/antlr4": "^4.11.3",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"babel-eslint": "^10.1.0",
"babel-loader": "8.2.3",
"chai": "^4.3.8",
"core-js": "^3.22.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"lint-staged": "^10.0.8",
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"antlr4": "^4.13.1",
"fast-deep-equal": "^3.1.3"
},
"exports": {
".": {
"node": {
"types": "./dist/index.d.ts",
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs",
"default": "./dist/index.node.mjs"
},
"browser": {
"types": "./dist/index.d.ts",
"import": "./dist/index.web.mjs",
"require": "./dist/index.web.cjs",
"default": "./dist/index.web.mjs"
}
}
}
}