-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
25 lines (25 loc) · 1013 Bytes
/
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
{
"private": true,
"workspaces": [
"addon",
"test-app"
],
"scripts": {
"prepare": "yarn workspace ember-inputmask5 run prepare",
"start": "npm-run-all --parallel start:*",
"start:addon": "yarn workspace ember-inputmask5 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 ember-inputmask5 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 ember-inputmask5 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 ember-inputmask5 run test",
"test:test-app": "yarn workspace test-app run test"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}