mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-24 08:11:44 -04:00
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "insomnia-plugin-jsonpath",
|
|
"version": "2.3.2",
|
|
"author": "Kong <office@konghq.com>",
|
|
"description": "Template tag to pull data from JSON strings",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Kong/insomnia.git",
|
|
"directory": "plugins/insomnia-plugin-jsonpath"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Kong/insomnia/issues"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"insomnia": {
|
|
"name": "json-path",
|
|
"description": "Template tag to pull data out of JSON strings",
|
|
"core": true,
|
|
"unlisted": true
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "npm run build",
|
|
"lint": "eslint . --ext .js,.ts,.tsx",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"clean": "tsc --build tsconfig.build.json --clean",
|
|
"postclean": "rimraf dist",
|
|
"build": "webpack --config webpack.config.js --display errors-only",
|
|
"watch": "npm run build -- --watch",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/webpack": "^4.41.26",
|
|
"jsonpath-plus": "^6.0.1",
|
|
"ts-loader": "^8.2.0",
|
|
"webpack": "^4.42.1",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-node-externals": "^1.7.2"
|
|
},
|
|
"gitHead": "e46bf021cf4b4379e31d2b2d9025d476d6839fa1"
|
|
}
|