-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.32 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/customerio/ember-provide-consume-context.git"
},
"license": "MIT",
"author": "Customer.io (https://customer.io)",
"scripts": {
"build": "npm run build --workspace ember-provide-consume-context",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"prepare": "npm run build",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "npm start --workspace ember-provide-consume-context -- --no-watch.clearScreen",
"start:test-app": "npm start --workspace test-app",
"test": "npm run test --workspaces --if-present",
"test:ember": "npm run test:ember --workspaces --if-present",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"concurrently": "^8.2.0",
"prettier": "^3.0.3",
"prettier-plugin-ember-template-tag": "^1.1.0"
},
"workspaces": [
"ember-provide-consume-context",
"test-app"
],
"dependencies": {
"@changesets/cli": "^2.26.2"
},
"overrides": {
"@glimmer/manager": "^0.84.3",
"@glimmer/reference": "^0.84.3",
"@glimmer/validator": "^0.84.3"
}
}