-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"version": "4.1.1",
"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": {
"build": "pnpm --filter ember-math-helpers build",
"release": "pnpm prepare && pnpm -F ember-math-helpers release",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm --filter ember-math-helpers start --no-watch.clearScreen",
"start:test-app": "pnpm --filter test-app start",
"test": "pnpm --filter '*' test",
"test:ember": "pnpm --filter '*' test:ember"
},
"devDependencies": {
"concurrently": "^9.1.2",
"npm-run-all": "^4.1.5",
"release-plan": "^0.11.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"ember-cli-htmlbars"
]
},
"overrides": {
"@glimmer/validator": "^0.84.3"
}
}
}