UNPKG

p6-xer

Version:

A TypeScript module for parsing and processing Primavera P6 XER files

81 lines (80 loc) 1.86 kB
{ "name": "p6-xer", "version": "0.0.3", "description": "A TypeScript module for parsing and processing Primavera P6 XER files", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "xer-parser": "./dist/cli.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage --coverageReporters=text-summary > coverage-summary.txt || true && node scripts/update-coverage-badge.js", "start": "node dist/cli.js", "prepare": "npm run build", "prepublishOnly": "npm test" }, "keywords": [ "primavera", "p6", "xer", "parser", "excel", "xlsx", "project management", "schedule", "construction" ], "author": "William Truong", "license": "LGPL-3.0-only", "repository": { "type": "git", "url": "git+https://github.com/wllmtrng/p6-xer.git" }, "bugs": { "url": "https://github.com/wllmtrng/p6-xer/issues" }, "homepage": "https://github.com/wllmtrng/p6-xer#readme", "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": [ "**/__tests__/**/*.test.ts" ], "collectCoverageFrom": [ "src/**/*.ts", "!src/**/*.test.ts", "!src/**/*.d.ts" ], "coverageReporters": [ "text-summary" ], "coverageThreshold": { "global": { "branches": 80, "functions": 80, "lines": 80, "statements": 80 } } }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.10.5", "jest": "^29.7.0", "ts-jest": "^29.2.5", "typescript": "^5.7.3" }, "dependencies": { "chardet": "^2.0.0", "commander": "^13.0.0", "iconv-lite": "^0.6.3", "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz" } }