forked from RobbieTheWagner/ember-math-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"private": true,
"repository": "https://github.com/RobbieTheWagner/ember-math-helpers",
"license": "MIT",
"author": {
"name": "Robert Wagner",
"email": "[email protected]",
"url": "https://github.com/RobbieTheWagner"
},
"scripts": {
"ember-try-one": "pnpm -F test-app ember-try-one",
"prepare": "pnpm -F ember-math-helpers prepare",
"release": "pnpm prepare && pnpm -F ember-math-helpers release",
"start": "npm-run-all --parallel start:*",
"start:addon": "pnpm -F ember-math-helpers start",
"start:test-app": "pnpm -F test-app start",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"test": "pnpm prepare && pnpm -F test-app test:ember",
"test:test-app": "pnpm -F test-app test",
"test:watch": "npm-run-all --aggregate-output --continue-on-error --parallel test:watch:*",
"test:watch:test-app": "pnpm -F test-app test --server",
"test:watch:addon": "pnpm -F ember-math-helpers start"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@release-it-plugins/workspaces": "^4.2.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.7.0"
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": {
"publish": false
},
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"pnpm": {
"overrides": {
"@glimmer/validator": "^0.84.3"
},
"peerDependencyRules": {
"ignoreMissing": [
"ember-cli-htmlbars"
]
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"volta": {
"node": "18.17.1",
"pnpm": "8.7.1"
},
"version": "4.0.0"
}