83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"version": "1.3.1",
|
|
"license": "MIT",
|
|
"name": "ts-md5",
|
|
"maintainers": [
|
|
{
|
|
"name": "Stephen von Takach",
|
|
"email": "steve@cotag.me"
|
|
},
|
|
{
|
|
"name": "Alex Sorafumo",
|
|
"email": "alex@place.tech"
|
|
}
|
|
],
|
|
"description": "TypeScript MD5 implementation",
|
|
"homepage": "https://github.com/cotag/ts-md5",
|
|
"module": "dist/esm/index.js",
|
|
"main": "dist/cjs/index.js",
|
|
"typings": "dist/esm/index.d.ts",
|
|
"keywords": [
|
|
"placeos",
|
|
"cotag",
|
|
"md5",
|
|
"typescript"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/cotag/ts-md5.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/cotag/ts-md5/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "node ./clean.js && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run build-worker",
|
|
"docs": "typedoc --excludePrivate --out docs src",
|
|
"test": "jest --coverage",
|
|
"test:watch": "jest --coverage --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:ci": "jest --runInBand",
|
|
"lint": "tslint --project tsconfig.json",
|
|
"semantic-release": "semantic-release",
|
|
"prepare": "npm run build",
|
|
"build-worker": "node ./build-worker.js"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
".(ts|tsx)": "ts-jest"
|
|
},
|
|
"testEnvironment": "jsdom",
|
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/test/"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,ts}"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.9",
|
|
"jest": "^26.2.2",
|
|
"jest-config": "^26.2.2",
|
|
"semantic-release": "^19.0.3",
|
|
"ts-jest": "^26.1.4",
|
|
"tslib": "^2.0.1",
|
|
"tslint": "^6.1.3",
|
|
"typedoc": "^0.22.11",
|
|
"typescript": "^4.5.5"
|
|
}
|
|
}
|