-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.19 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
{
"workspaces": [
"packages/*"
],
"private": true,
"repository": "https://github.com/crunchybananas/cb-ember-mobiledoc-editor",
"license": "MIT",
"author": "crunchybananas",
"scripts": {
"prepare": "yarn workspace cb-ember-mobiledoc-editor run prepare",
"start": "npm-run-all --parallel start:*",
"start:addon": "yarn workspace cb-ember-mobiledoc-editor run start",
"start:test-app": "yarn workspace test-app run start",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:addon": "yarn workspace cb-ember-mobiledoc-editor run lint",
"lint:test-app": "yarn workspace test-app run lint",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:fix:*",
"lint:fix:addon": "yarn workspace cb-ember-mobiledoc-editor run lint:fix",
"lint:fix:test-app": "yarn workspace test-app run lint:fix",
"test": "npm-run-all --aggregate-output --continue-on-error --parallel test:*",
"test:addon": "yarn workspace cb-ember-mobiledoc-editor run test",
"test:test-app": "yarn workspace test-app run test"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"prettier": "2.7.1"
},
"version": "0.0.1"
}