insomnia/packages/insomnia-xpath/package.json

43 lines
1.0 KiB
JSON
Raw Normal View History

{
2022-03-01 16:35:24 +00:00
"private": false,
"name": "insomnia-xpath",
"version": "3.5.1-beta.2",
"author": "Kong <office@konghq.com>",
"description": "Query XML using XPath",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-xpath"
},
"bugs": {
"url": "https://github.com/Kong/insomnia/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"bootstrap": "npm run build",
2021-12-10 23:10:20 +00:00
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"test": "jest --silent"
},
"devDependencies": {
"@jest/globals": "^28.1.0",
"@types/xmldom": "0.1.30",
"jest": "^28.1.0"
},
"dependencies": {
"insomnia-cookies": "3.5.1-beta.2",
"xmldom": "^0.5.0",
2022-03-17 12:31:54 +00:00
"xpath": "0.0.32"
}
}