forked from embroider-build/embroider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.1 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
{
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:embroider-build/embroider.git"
},
"scripts": {
"clean": "git clean -x -f",
"compile": "tsc",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:eslint": "eslint . --cache",
"lint:eslint:fix": "eslint . --fix",
"lint:prettier": "prettier . -c",
"lint:prettier:fix": "prettier . -w",
"lint:router-types": "cd packages/router && pnpm lint:types",
"prepare": "tsc && pnpm build-v2-addons",
"build-v2-addons": "concurrently 'pnpm:build-v2-addons:*'",
"build-v2-addons:router": "cd packages/router && pnpm build",
"test": "cd tests/scenarios && pnpm test"
},
"jest": {
"projects": [
"<rootDir>/packages/*",
"<rootDir>/test-packages/"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
},
"pnpm": {
"overrides": {
"browserslist": "^4.14.0",
"qunit": "^2.14.1",
"graceful-fs": "^4.0.0",
"@types/eslint": "^8.37.0"
}
},
"devDependencies": {
"@embroider/release": "workspace:*",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"prettier": "^2.3.1",
"typescript": "^4.9.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"volta": {
"node": "16.20.0",
"pnpm": "8.4.0"
},
"changelog": {
"__comment__": "Our release infrastructure relies on these exact labels. Be careful changing them.",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"unlabeled": ":question: Unlabeled"
},
"wildcardLabel": "unlabeled"
}
}