opencart-manager
Version:
Node.js package helping to manage your opencart store data easily.
81 lines (80 loc) • 1.84 kB
JSON
{
"name": "opencart-manager",
"version": "0.1.2",
"description": "Node.js package helping to manage your opencart store data easily.",
"main": "lib/index.js",
"engines": {
"node": ">=10.23.0"
},
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "nodemon",
"prettier": "prettier --write ./src",
"prepare": "npm run prettier && npm run build",
"prepublishOnly": "npm t"
},
"files": [
"lib/"
],
"author": "Yevheniy Brahin",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/eugenehere/opencart-manager.git"
},
"keywords": [
"opencart"
],
"bugs": {
"url": "https://github.com/eugenehere/opencart-manager/issues"
},
"homepage": "https://github.com/eugenehere/opencart-manager#readme",
"dependencies": {
"change-case": "^4.1.1",
"mysql2": "^2.2.5"
},
"nodemonConfig": {
"ignore": [
"./node_modules",
"./lib"
],
"watch": [
"./src"
],
"exec": "tsc",
"ext": "ts"
},
"devDependencies": {
"@types/change-case": "^2.3.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"import-sort-style-module": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "0.0.6",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(test.ts)"
],
"setupFilesAfterEnv": [
"<rootDir>/src/__tests__/jest-setup.ts"
]
},
"importSort": {
".ts": {
"style": "module",
"parser": "typescript"
}
}
}