Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
nodejs
/
daily_store_reports_nodejs
/
node_modules
/
xlsx-generator
:
package.json
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
{ "name": "xlsx-generator", "version": "1.0.3", "description": "xlsx file generator", "main": "dist/index.js", "scripts": { "build": "rm -rf ./dist && tsc", "prerestart": "tsc --watch", "start": "node dist/index.js", "start:pre": "ts-node src/index.ts", "start:dev": "nodemon src/index.ts", "test": "jest --maxWorkers=2", "test:watch": "jest --watch", "test:watchAll": "jest --watchAll" }, "keywords": [ "xlsx", "generator" ], "repository": { "type": "git", "url": "git@github.com:libterty/XLSX-Generator.git" }, "bugs": { "url": "https://github.com/libterty/XLSX-Generator/issues" }, "homepage": "https://github.com/libterty/XLSX-Generator", "author": "11", "license": "ISC", "dependencies": { "exceljs": "^3.9.0", "fs-extra": "^9.0.0", "nanoid": "^3.1.6", "ts-node": "^6.2.0", "typescript": "^3.1.1" }, "devDependencies": { "@types/exceljs": "^1.3.0", "@types/fs-extra": "^8.1.0", "@types/jest": "^25.2.1", "@types/nanoid": "^2.1.0", "@types/node": "^13.11.1", "jest": "^25.1.0", "nodemon": "^2.0.2", "prettier": "^2.0.5", "ts-jest": "^25.2.1", "tsconfig-paths": "^3.9.0" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "test", "testRegex": ".spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "coverageDirectory": "../coverage", "testEnvironment": "node" } }