-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.75 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
83
84
85
86
87
88
89
90
91
92
{
"name": "subdata-2",
"version": "0.3.0",
"type": "module",
"description": "A wrapper around the SubData 2 data protocol for Node.js",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist/",
"tsc": "tsc",
"build": "yarn run clean; yarn run tsc",
"start": "echo \"This is a damned module, not a program!\" && exit 1",
"prettier": "prettier . -w",
"prettier:check": "prettier . --check",
"test": "jest",
"husky": "husky install",
"prepare": "yarn run husky && yarn run docs",
"lint-staged": "lint-staged",
"lint": "eslint .",
"lint:warnings_as_errors": "eslint --max-warnings=0 .",
"test:staged": "npx lint-staged",
"githook:commit-msg": "yarn run commitlint --edit",
"githook:pre-commit": "yarn run test:staged && yarn run build && yarn run test",
"docs": "typedoc",
"np": "np"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thetayloredman/node-subdata-2.git"
},
"keywords": [
"subdata",
"protocol",
"tcp"
],
"author": "LogN",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/thetayloredman/node-subdata-2/issues"
},
"homepage": "https://github.com/thetayloredman/node-subdata-2#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"commitlint": "^17.3.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"np": "^7.6.3",
"prettier": "^2.8.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write"
],
"*.js": [
"eslint",
"prettier --write"
],
"*.md": [
"prettier --write"
],
"*.yml": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"debug": "^4.3.4",
"strict-event-emitter": "^0.4.6"
}
}