1 | {
|
2 | "version": "1.3.1",
|
3 | "license": "MIT",
|
4 | "name": "ts-md5",
|
5 | "maintainers": [
|
6 | {
|
7 | "name": "Stephen von Takach",
|
8 | "email": "steve@cotag.me"
|
9 | },
|
10 | {
|
11 | "name": "Alex Sorafumo",
|
12 | "email": "alex@place.tech"
|
13 | }
|
14 | ],
|
15 | "description": "TypeScript MD5 implementation",
|
16 | "homepage": "https://github.com/cotag/ts-md5",
|
17 | "module": "dist/esm/index.js",
|
18 | "main": "dist/cjs/index.js",
|
19 | "typings": "dist/esm/index.d.ts",
|
20 | "keywords": [
|
21 | "placeos",
|
22 | "cotag",
|
23 | "md5",
|
24 | "typescript"
|
25 | ],
|
26 | "files": [
|
27 | "dist",
|
28 | "src"
|
29 | ],
|
30 | "engines": {
|
31 | "node": ">=12"
|
32 | },
|
33 | "repository": {
|
34 | "type": "git",
|
35 | "url": "git+https://github.com/cotag/ts-md5.git"
|
36 | },
|
37 | "bugs": {
|
38 | "url": "https://github.com/cotag/ts-md5/issues"
|
39 | },
|
40 | "scripts": {
|
41 | "build": "node ./clean.js && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run build-worker",
|
42 | "docs": "typedoc --excludePrivate --out docs src",
|
43 | "test": "jest --coverage",
|
44 | "test:watch": "jest --coverage --watch",
|
45 | "test:coverage": "jest --coverage",
|
46 | "test:ci": "jest --runInBand",
|
47 | "lint": "tslint --project tsconfig.json",
|
48 | "semantic-release": "semantic-release",
|
49 | "prepare": "npm run build",
|
50 | "build-worker": "node ./build-worker.js"
|
51 | },
|
52 | "jest": {
|
53 | "transform": {
|
54 | ".(ts|tsx)": "ts-jest"
|
55 | },
|
56 | "testEnvironment": "jsdom",
|
57 | "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
58 | "moduleFileExtensions": [
|
59 | "ts",
|
60 | "tsx",
|
61 | "js"
|
62 | ],
|
63 | "coveragePathIgnorePatterns": [
|
64 | "/node_modules/",
|
65 | "/test/"
|
66 | ],
|
67 | "collectCoverageFrom": [
|
68 | "src/**/*.{js,ts}"
|
69 | ]
|
70 | },
|
71 | "devDependencies": {
|
72 | "@types/jest": "^26.0.9",
|
73 | "jest": "^26.2.2",
|
74 | "jest-config": "^26.2.2",
|
75 | "semantic-release": "^19.0.3",
|
76 | "ts-jest": "^26.1.4",
|
77 | "tslib": "^2.0.1",
|
78 | "tslint": "^6.1.3",
|
79 | "typedoc": "^0.22.11",
|
80 | "typescript": "^4.5.5"
|
81 | }
|
82 | }
|