xlport
Version:
84 lines (83 loc) • 1.93 kB
JSON
{
"name": "xlport",
"version": "0.4.1",
"description": "",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"run": "tsc",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register ./node_modules/jest-cli/bin/jest.js --runInBand",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xlport/xlportjs.git"
},
"proxy": "http://localhost:8080",
"keywords": [
"xlPort",
"Excel import",
"Excel export"
],
"author": "xlPort, Peter Albert",
"license": "MIT",
"bugs": {
"url": "https://github.com/xlport/xlportjs/issues"
},
"homepage": "https://xlport.io",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "14.14.31",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"stream-equal": "^2.0.1",
"ts-jest": "^29.1.0",
"tsconfig-paths": "4.2.0",
"ts-node": "10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"form-data": "^4.0.0",
"axios": "^1.4.0"
},
"prettier": {
"trailingComma": "all",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/"
],
"moduleNameMapper": {
"^@xlport(|/.*)$": "<rootDir>/lib/$1"
},
"moduleDirectories": [
"node_modules",
"dist"
]
},
"wallaby": {
"autoDetect": true
}
}