-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.31 KB
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
{
"name": "queue-system",
"version": "4.1.1",
"repository": "git@github.com:dzek69/queue-system.git",
"author": "Jacek Nowacki",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest",
"test:windows": "set NODE_ENV=test & jest",
"docs": "typedoc src/index.ts --out docs --includeVersion --excludePrivate --pluginPages ./pagesconfig.json",
"compile": "yarn compile:esm && yarn compile:cjs",
"compile:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs",
"compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
"lint:fix": "yarn lint --fix",
"prepack": "yarn compile",
"prepublishOnly": "yarn audit && yarn lint && yarn test && yarn docs",
"start:dev:compatibility": "TS_NODE_FILES=true yarn start:dev",
"prepare": "husky install"
},
"exports": {
".": {
"require": "./dist/index.js",
"default": "./esm/index.js"
}
},
"main": "./dist/index.js",
"types": "./esm/index.d.ts",
"module": "./esm/index.js",
"type": "module",
"dependencies": {
"@ezez/utils": "^1.2.0",
"eventemitter3": "^4.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@dzek69/eslint-config-base": "^2.2.0",
"@dzek69/eslint-config-import": "^1.0.0",
"@dzek69/eslint-config-import-typescript": "^1.0.0",
"@dzek69/eslint-config-typescript": "^1.0.1",
"@knodes/typedoc-plugin-pages": "^0.23.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"babel-plugin-module-extension": "^0.1.3",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^9.0.1",
"husky": "^8.0.1",
"jest": "^27.5.1",
"must": "^0.13.4",
"promise": "^8.1.0",
"ts-node": "^10.9.1",
"typed-emitter": "^2.1.0",
"typedoc": "^0.23.22",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-push": "yarn prepublishOnly && yarn compile"
}
},
"libraryTemplate": {
"version": "3.5.3",
"language": "typescript",
"fixDefaultForCommonJS": true,
"jsx": false
}
}