UNPKG

nds-core

Version:

nds-core functionality for nds

76 lines (75 loc) 2.03 kB
{ "name": "nds-core", "version": "2.0.9", "description": "nds-core functionality for nds", "main": "./dist/index.js", "files": [ "/dist/**" ], "scripts": { "clean": "rimraf dist", "compiler": "npm run clean && tsc --pretty", "build": "npm run compiler", "test": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watchAll", "test:coveralls": "jest --coverage && coveralls < coverage/lcov.info", "lint": "eslint src/**/*.ts --fix", "format": "prettier src/**/*.ts --write", "lint:fix": "npm run format && npm run lint" }, "author": { "name": "Restu Wahyu Saputra", "email": "restuwahyu13@gmail.com", "url": "https://github.com/restuwahyu13" }, "repository": { "url": "https://github.com/restuwahyu13/node-disk-storage" }, "homepage": "https://github.com/restuwahyu13/node-disk-storage#readme", "bugs": { "url": "https://github.com/restuwahyu13/node-disk-storage/issues" }, "license": "MIT", "engines": { "node": ">=12", "npm": ">=6" }, "keywords": [], "dependencies": { "is-any-type": "0.0.4", "js-base64": "^3.7.2", "jsonpack": "^1.1.5", "msgpack-lite": "^0.1.26" }, "devDependencies": { "@types/jest": "^27.0.0", "@types/js-base64": "^3.3.1", "@types/jsonpack": "^1.1.1", "@types/msgpack-lite": "^0.1.8", "@types/node": "^16.11.38", "@typescript-eslint/eslint-plugin": "^4.12.0", "@typescript-eslint/parser": "^4.12.0", "coveralls": "^3.1.0", "eslint": "^7.17.0", "eslint-config-prettier": "^8.0.0", "eslint-config-standard": "^16.0.2", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jest": "^24.1.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.3.1", "eslint-plugin-promise": "^5.1.0", "husky": "^4.3.7", "jest": "^26.6.3", "prettier": "^2.2.1", "rimraf": "^3.0.2", "ts-jest": "^26.5.6", "ts-node": "^10.2.0", "typescript": "^4.1.3" }, "husky": { "hooks": { "pre-commit": "npm run lint:fix" } } }