@finapi/web-form
Version:
Library for integrating the finAPI Web Form
65 lines (64 loc) • 2.28 kB
JSON
{
"name": "@finapi/web-form",
"version": "2.38.0",
"description": "Library for integrating the finAPI Web Form",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"types": "dist/index.d.ts",
"scripts": {
"clean": "npx rimraf dist docs",
"lint": "eslint src/**/*.ts",
"test:unit": "JEST_SUITE_NAME=\"Web Form Loader Unit tests\" JEST_JUNIT_OUTPUT_NAME=\"unit.junit.xml\" jest --testPathPattern=unit\\.test\\.ts",
"build": "tsc --declaration",
"test:build": "JEST_SUITE_NAME=\"Web Form Loader Build test\" JEST_JUNIT_OUTPUT_NAME=\"build.junit.xml\" jest build.test.ts --coverage false",
"docs": "typedoc --plugin none --excludeInternal --disableSources --includeVersion --excludeExternals",
"bundle": "rollup -c",
"test:bundle": "JEST_SUITE_NAME=\"Web Form Loader Bundle test\" JEST_JUNIT_OUTPUT_NAME=\"bundle.junit.xml\" jest bundle.test.ts --coverage false",
"package": "npm run clean && npm run lint && npm run test:unit && npm run build && npm run test:build && npm run docs && npm run bundle && npm run test:bundle",
"release": "release-it --ci",
"echo:version": "echo $npm_package_version",
"serve": "npx serve -p 4242"
},
"keywords": [
"finapi",
"webform",
"web-form"
],
"author": "support@finapi.io",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-replace": "^2.4.1",
"@types/jest": "^26.0.20",
"@types/jsdom": "^16.2.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"release-it": "^14.5.0",
"rollup": "^2.41.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.3",
"typedoc": "^0.20.33",
"typescript": "^4.2.3"
},
"dependencies": {},
"jest-junit": {
"includeConsoleOutput": true,
"classNameTemplate": "{filepath}.All",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " › ",
"suiteNameTemplate": "{filepath}"
},
"publishConfig": {
"access": "public"
}
}