@har-sdk/core
Version:
The base package can be used to import specification files (i.e. HAR, OAS and Postman Collection) and detect their type.
56 lines (55 loc) • 1.52 kB
JSON
{
"name": "@har-sdk/core",
"version": "1.5.0",
"private": false,
"description": "The base package can be used to import specification files (i.e. HAR, OAS and Postman Collection) and detect their type.",
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/har-sdk.git"
},
"author": {
"name": "Artem Derevnjuk",
"email": "artem.derevnjuk@neuralegion.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NeuraLegion/har-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**"
],
"keywords": [
"postman",
"oas",
"openapi",
"swagger",
"har",
"api"
],
"main": "./dist/bundle.umd.js",
"module": "./dist/bundle.esm5.js",
"es2015": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/NeuraLegion/har-sdk/tree/master/packages/core#readme",
"scripts": {
"prebuild": "npm run compile -- --clean",
"build": "npm run compile && npm run bundle",
"bundle": "rollup -c ../../rollup.config.js",
"compile": "tsc -b tsconfig.build.json",
"lint": "eslint --ignore-path ../../.eslintignore .",
"format": "prettier --ignore-path ../../.prettierignore --check **/*.ts",
"test": "cross-env NODE_ENV=test jest",
"coverage": "cross-env NODE_ENV=test jest --coverage"
},
"dependencies": {
"js-yaml": "^4.1.0",
"openapi-types": "^10.0.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5"
}
}