-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.81 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
{
"name": "@marko/tags-api-preview",
"description": "A glimpse into the future of Marko.",
"version": "0.8.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/tags-api-preview/issues",
"dependencies": {
"magic-string": "^0.30.17"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@marko/compiler": "^5.39.10",
"@marko/fixture-snapshots": "^2.2.1",
"@marko/testing-library": "^6.2.0",
"@testing-library/user-event": "^13.5.0",
"@types/babel__code-frame": "^7.0.6",
"@types/chai": "^4.3.12",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-dom": "1.11.3",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-dom": "^1.12.0",
"cross-env": "^7.0.3",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"fast-glob": "^3.3.2",
"fixpack": "^4.0.0",
"fs-monkey": "^1.0.6",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"jsdom-context-require": "^5.2.4",
"lint-staged": "^15.3.0",
"marko": "^5.37.10",
"memfs": "^4.15.2",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"prettier": "^3.4.2",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unionfs": "^4.5.4"
},
"files": [
"dist",
"marko.json",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"homepage": "https://github.com/marko-js/tags-api-preview",
"keywords": [
"api",
"marko",
"preview",
"tags"
],
"license": "MIT",
"main": "marko.json",
"peerDependencies": {
"marko": ">= 5.37.10"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js/tags-api-preview"
},
"scripts": {
"build": "tsc -b && tsx build.mts",
"change": "changeset add",
"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 \"./**/*{.ts,.js,.json,.md,.yml,rc}\"",
"mocha": "cross-env NODE_ENV=test mocha \"./src/**/__tests__/**/*.test.ts\"",
"prepare": "husky",
"release": "npm run build && tsx publish.mts pre && changeset publish && tsx publish.mts post",
"report": "open ./coverage/lcov-report/index.html",
"test": "npm run mocha -- --watch",
"test:inspect": "npm test -- --inspect",
"test:update": "npm run mocha -- --update",
"version": "changeset version && npm i --package-lock-only"
}
}