90 lines
2.4 KiB
JSON
90 lines
2.4 KiB
JSON
{
|
|
"author": "Stefan Goessner",
|
|
"name": "jsonpath-plus",
|
|
"version": "0.19.0",
|
|
"main": "dist/index-umd.js",
|
|
"module": "dist/index-es.js",
|
|
"description": "A JS implementation of JSONPath with some additional operators",
|
|
"contributors": [
|
|
{
|
|
"name": "Prof. Gössner",
|
|
"email": "stefan.goessner@fh-dortmund.de"
|
|
},
|
|
{
|
|
"name": "Subbu Allamaraju",
|
|
"email": "subbu@subbu.org"
|
|
},
|
|
{
|
|
"name": "Mike Brevoort",
|
|
"email": "mike@brevoort.com"
|
|
},
|
|
{
|
|
"name": "Robert Krahn",
|
|
"email": "robert.krahn@gmail.com"
|
|
},
|
|
{
|
|
"name": "Brett Zamir",
|
|
"email": "brettz9@yahoo.com"
|
|
},
|
|
{
|
|
"name": "Richard Schneider",
|
|
"email": "makaretu@gmail.com"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/s3u/JSONPath.git"
|
|
},
|
|
"bugs": "https://github.com/s3u/JSONPath/issues/",
|
|
"homepage": "https://github.com/s3u/JSONPath",
|
|
"engines": {
|
|
"node": ">=6.0"
|
|
},
|
|
"react-native": {
|
|
"vm": false
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.4.4",
|
|
"@babel/preset-env": "^7.4.4",
|
|
"@mysticatea/eslint-plugin": "^10.0.3",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-ash-nazg": "^4.0.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-plugin-compat": "^3.1.1",
|
|
"eslint-plugin-eslint-comments": "^3.1.1",
|
|
"eslint-plugin-import": "^2.17.2",
|
|
"eslint-plugin-jsdoc": "^5.0.2",
|
|
"eslint-plugin-markdown": "^1.0.0",
|
|
"eslint-plugin-no-use-extend-native": "^0.4.0",
|
|
"eslint-plugin-node": "^9.0.1",
|
|
"eslint-plugin-promise": "^4.1.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"eslint-plugin-unicorn": "^8.0.2",
|
|
"node-static": "^0.7.11",
|
|
"nodeunit": "0.11.3",
|
|
"open-cli": "^5.0.0",
|
|
"remark-cli": "^6.0.1",
|
|
"remark-lint-code-block-style": "^1.0.2",
|
|
"remark-lint-ordered-list-marker-value": "^1.0.2",
|
|
"rollup": "1.12.1",
|
|
"rollup-plugin-babel": "^4.3.2",
|
|
"rollup-plugin-terser": "^4.0.4",
|
|
"typescript": "^3.4.5"
|
|
},
|
|
"keywords": [
|
|
"json",
|
|
"jsonpath"
|
|
],
|
|
"scripts": {
|
|
"remark": "remark -q -f .",
|
|
"rollup": "rollup -c",
|
|
"eslint": "eslint --ext js,md .",
|
|
"nodeunit": "nodeunit test",
|
|
"test": "npm run eslint && npm run rollup && npm run nodeunit",
|
|
"browser-test": "npm run eslint && npm run rollup && open-cli http://localhost:8084/test/ && static -p 8084",
|
|
"start": "npm run browser-test"
|
|
}
|
|
}
|