-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.29 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
{
"private": true,
"description": "The better way to handle modals in your Ember.js apps.",
"repository": "https://github.com/mainmatter/ember-promise-modals",
"license": "MIT",
"author": "Mainmatter GmbH",
"workspaces": [
"packages/*"
],
"scripts": {
"build:addon": "pnpm --filter ember-promise-modals build",
"build:test-app": "pnpm --filter test-app build",
"start:test-app": "pnpm --filter test-app start",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:md": "prettier --check '**/*.md'",
"lint:md:fix": "prettier --write '**/*.md'",
"lint:addon": "pnpm --filter ember-promise-modals lint",
"lint:test-app": "pnpm --filter test-app lint"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"release-plan": "0.9.0"
},
"changelog": {
"repo": "mainmatter/ember-promise-modals",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"mustache",
"postcss",
"webpack"
]
}
}
}