qif-ts
Version:
Typescript library to map QIF formatted data
70 lines (69 loc) • 1.54 kB
JSON
{
"name": "qif-ts",
"version": "1.0.0",
"description": "Typescript library to map QIF formatted data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run lint && npm run test:coverage && rm -rf dist && npm run build",
"lint": "tslint --project .",
"test": "npm run test:watch",
"test:coverage": "nyc mocha",
"test:watch": "mocha --watch"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"**/*.config.js"
],
"reporter": [
"text",
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/cluskii/qif-ts.git"
},
"keywords": [
"qif",
"finance",
"typescript",
"parser",
"mapper"
],
"author": "Andrew McCluskey (@cluskii)",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/cluskii/qif-ts/issues"
},
"homepage": "https://gitlab.com/cluskii/qif-ts#readme",
"devDependencies": {
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/mocha-framework": "^3.3.1",
"@stryker-mutator/mocha-runner": "^3.3.1",
"@stryker-mutator/typescript": "^3.3.1",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
},
"dependencies": {}
}