-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.67 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.67 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@caseywebb/firefly",
"version": "1.4.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caseyWebb/firefly"
},
"bin": "./bin/firefly",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc -b",
"start": "node dist/index.js",
"lint": "eslint src/",
"format": "pretty-quick",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"johnny-five": "^2.1.0",
"koa": "^3.2.0",
"koa-body": "^7.0.1",
"pi-io": "^1.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/johnny-five": "^2.1.0",
"@types/supertest": "^7.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.2.0",
"husky": "^9.1.0",
"jest": "^30.3.0",
"prettier": "^3.8.2",
"pretty-quick": "^4.0.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.1"
},
"jest": {
"roots": [
"<rootDir>/test"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/test/"
],
"coverageReporters": [
"lcov",
"html"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"diagnostics": false
}
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
}
}