-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.38 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.38 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
{
"name": "@marko/express",
"description": "Render Marko templates in an express application.",
"version": "2.1.0",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/express/issues",
"devDependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.1",
"@marko/compiler": "5.21.6",
"@marko/jest": "^4.1.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"es-jest": "^2.0.0",
"esbuild": "0.14.49",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.1",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"marko": "^5.21.2",
"node-fetch": "^3.2.8",
"prettier": "^2.7.1",
"tsx": "^3.8.0",
"typescript": "^4.7.4"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"homepage": "https://github.com/marko-js/express",
"keywords": [
"express",
"marko"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"peerDependencies": {
"express": "^4 || ^5",
"marko": "4 - 6"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js/express"
},
"scripts": {
"build": "tsc -b && tsx build.mts",
"change": "changeset add",
"ci:test": "jest --ci --coverage",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
"lint": "tsc -b && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
"lint:eslint": "eslint -f visualstudio .",
"lint:prettier": "prettier \"./**/*{.ts,.js,.json,.md,.yml,rc}\"",
"prepare": "husky install",
"release": "npm run build && changeset publish",
"test": "jest --watch",
"test:inspect": "node --inspect=0.0.0.0 $(which jest) --watch --runInBand --testTimeout 99999999",
"version": "changeset version && npm i --package-lock-only"
},
"types": "dist/index.d.ts"
}