-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "express-hotwire",
"version": "0.3.2",
"description": "Express tooling for hotwire.dev HTML over the wire",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/deriegle/express-hotwire",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsc",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:unit": "jest --runInBand",
"watch:build": "tsc -p tsconfig.json -w",
"release": "yarn test && standard-version"
},
"engines": {
"node": ">10"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "27.4.0",
"@types/node": "16.11.21",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"cspell": "5.16.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.4",
"express": "4.17.2",
"jest": "27.4.7",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"standard-version": "9.3.2",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.5.5"
},
"files": [
"build/**",
"!build/**/__tests__/**",
"!build/**/*.test.js",
"!build/**/*.test.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true
}
}