-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
37 lines (37 loc) · 1.47 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
},
"license": "MIT",
"author": {
"name": "Alec Fenichel"
},
"scripts": {
"build": "npm run build --workspace addon",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"prepare": "npm run build --workspace addon",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"mirage": "concurrently 'npm:mirage:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"mirage-test": "concurrently 'npm:mirage-test:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "npm start --workspace addon -- --no-watch.clearScreen",
"start:test-app": "npm start --workspace test-app -- --environment development",
"mirage:addon": "npm start --workspace addon -- --no-watch.clearScreen",
"mirage:test-app": "npm start --workspace test-app -- --environment mirage",
"mirage-test:addon": "npm start --workspace addon -- --no-watch.clearScreen",
"mirage-test:test-app": "npm start --workspace test-app -- --environment mirage-test",
"test": "npm run test --workspaces --if-present",
"test:ember": "npm run test:ember --workspaces --if-present"
},
"devDependencies": {
"concurrently": "^8.2.0"
},
"workspaces": [
"addon",
"test-app"
],
"version": ""
}