@parsify/converter
Version:
Parsify helper for converting files created by alternative software
77 lines (76 loc) • 2.07 kB
JSON
{
"name": "@parsify/converter",
"version": "0.1.1-beta.1",
"description": "Parsify helper for converting files created by alternative software",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Antoni Kępiński <antoni@kepinski.ch> (https://www.kepinski.ch)",
"bugs": {
"url": "https://github.com/parsify/converter/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"test": "xo",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"repository": "parsify/converter",
"homepage": "https://github.com/parsify/converter",
"keywords": [
"parsify",
"@parsify/converter",
"parsify-plugin",
"expression-parser",
"parser",
"expression",
"converter"
],
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/node": "^16.11.7",
"@types/xml2js": "^0.4.9",
"ava": "^3.15.0",
"c8": "^7.10.0",
"coveralls": "^3.1.1",
"del-cli": "^4.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"xo": "^0.46.4"
},
"sideEffects": false,
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"rules": {
"import/no-anonymous-default-export": "off",
"eslint-comments/no-unused-disable": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/naming-convention": "off"
},
"ignores": [
"test.ts"
]
},
"dependencies": {
"xml2js": "^0.4.23"
}
}