-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
82 lines (82 loc) · 2.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"version": "1.2.11",
"license": "MIT",
"name": "ts-md5",
"maintainers": [
{
"name": "Stephen von Takach",
"email": "[email protected]"
},
{
"name": "Alex Sorafumo",
"email": "[email protected]"
}
],
"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"
}
}