-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 1.95 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
{
"name": "@breejs/ts-worker",
"description": "Typescript workers plugin for Bree!",
"version": "2.0.0",
"author": "Taylor Schley <[email protected]> (https://github.com/shadowgate15)",
"bugs": {
"url": "https://github.com/breejs/ts-worker/issues",
"email": "[email protected]"
},
"contributors": [
"Taylor Schley <[email protected]> (https://github.com/shadowgate15)"
],
"dependencies": {
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/node": "^17.0.42",
"@typescript-eslint/parser": "^5.28.0",
"ava": "^4.3.0",
"bree": "^9.0.1",
"cross-env": "^7.0.3",
"delay": "^5.0.0",
"dtslint": "^4.2.1",
"eslint": "^8.17.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"nyc": "^15.1.0",
"remark-cli": "^10.0.1",
"remark-preset-github": "^4.0.4",
"typescript": "^4.7.3",
"xo": "^0.50.0"
},
"engines": {
"node": ">= 12.11"
},
"files": [
"src",
"types/index.d.ts"
],
"homepage": "https://github.com/breejs/ts-worker",
"keywords": [
"bree",
"breejs",
"lass",
"schedule",
"ts",
"typescript",
"worker",
"workers"
],
"license": "MIT",
"main": "src/index.js",
"peerDependencies": {
"bree": ">=9.0.0",
"tsconfig-paths": ">= 4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/breejs/ts-worker"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:ts && npm run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"lint:ts": "cross-env NODE_ENV=test dtslint types",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
},
"types": "types"
}