bmp-ts
Version:
A pure typescript BMP encoder and decoder
103 lines (102 loc) • 1.91 kB
JSON
{
"name": "bmp-ts",
"version": "1.0.3",
"description": "A pure typescript BMP encoder and decoder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hipstersmoothie/bmp-ts"
},
"files": [
"dist",
"types"
],
"author": {
"name": "Andrew lisowski",
"email": "lisowski54@gmail.com"
},
"scripts": {
"build": "tsc",
"lint": "tslint -p . --format stylish",
"test": "jest",
"release": "auto shipit"
},
"dependencies": {
"@types/node": "^10.11.7"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"auto": "^7.6.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-xo": "^0.9.0",
"typescript": "^3.1.3"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"bmp",
"1bit",
"4bit",
"8bit",
"16bit",
"24bit",
"32bit",
"encoder",
"decoder",
"image",
"javascript",
"js"
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.test.+(ts|tsx|js)"
],
"globals": {
"test-jest": {
"tsConfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/*.d.ts",
"!**/dist/**",
"!**/node_modules/**",
"!**/vendor/**"
]
}
}