-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.79 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
{
"name": "@micro-frame/marko",
"description": "A Marko tag for building SSR friendly micro frontends.",
"version": "1.0.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/micro-frame/issues",
"dependencies": {
"make-fetch-happen": "^12.0.0",
"writable-dom": "^1.0.3"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@marko/compiler": "^5.16.1",
"@marko/express": "^1.0.0",
"@marko/fixture-snapshots": "^2.1.6",
"@marko/testing-library": "^6.0.0",
"@types/convert-source-map": "^1.5.2",
"@types/express": "^4.17.13",
"@types/istanbul-lib-instrument": "^1.7.4",
"@types/jsdom": "^16.2.13",
"@types/make-fetch-happen": "^9.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"convert-source-map": "^1.8.0",
"esbuild": "^0.13.9",
"esbuild-register": "^3.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"express": "^4.17.1",
"fast-glob": "^3.2.7",
"fixpack": "^4.0.0",
"husky": "^7.0.4",
"istanbul-lib-instrument": "^5.0.4",
"jsdom": "^18.0.0",
"lint-staged": "^11.2.6",
"marko": "^5.17.2",
"mocha": "^9.1.3",
"mocha-snap": "^4.0.2",
"nyc": "^15.1.0",
"playwright": "^1.16.1",
"prettier": "^2.8.8",
"replace": "^1.2.1",
"semantic-release": "^18.0.0",
"typescript": "^4.4.4"
},
"files": [
"dist",
"marko.json",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"homepage": "https://github.com/marko-js/micro-frame",
"keywords": [
"embed",
"frame",
"frontend",
"micro",
"streaming"
],
"license": "MIT",
"main": "marko.json",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/micro-frame"
},
"scripts": {
"build": "tsc -b && node -r esbuild-register build",
"ci:test": "nyc npm run mocha -- --forbid-pending --forbid-only",
"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 'src/**/*{.ts,.js,.json,.md,.yml,rc}' --with-node-modules",
"mocha": "NODE_ENV=test mocha 'src/**/__tests__/*.test.ts'",
"postpublish": "replace --silent 'dist' 'src' marko.json",
"prepare": "husky install",
"prepublishOnly": "npm run build && replace --silent 'src' 'dist' marko.json",
"release": "semantic-release",
"report": "open ./coverage/lcov-report/index.html",
"test": "npm run mocha -- --watch",
"test:inspect": "npm test -- --inspect",
"test:update": "npm run mocha -- --update"
}
}