-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
44 lines (44 loc) · 1.21 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
{
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:mainmatter/qunit-dom.git"
},
"scripts": {
"prepare": "pnpm build",
"release": "cd packages/qunit-dom && pnpm run release",
"build": "cd packages/qunit-dom && pnpm build",
"docs": "pnpm build && pnpm exec documentation build packages/qunit-dom/dist/qunit-dom.js --config documentation.yml -f md -o API.md",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"test:coverage": "pnpm --filter '*' test:coverage",
"test:ember": "pnpm --filter '*' test:ember"
},
"devDependencies": {
"concurrently": "8.2.2",
"documentation": "14.0.3",
"eslint": "8.57.1",
"prettier": "2.8.8",
"release-plan": "^0.9.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18.*",
"npm": "use pnpm",
"yarn": "use pnpm"
},
"volta": {
"node": "20.16.0",
"pnpm": "8.8.0"
},
"changelog": {
"repo": "mainmatter/qunit-dom",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
}
}