-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/DazzlingFugu/ember-slugify.git"
},
"homepage": "https://github.com/DazzlingFugu/ember-slugify",
"bugs": "https://github.com/DazzlingFugu/ember-slugify/issues",
"license": "MIT",
"author": {
"name": "Dazzling Fugu",
"url": "https://github.com/DazzlingFugu"
},
"scripts": {
"build": "yarn workspace ember-slugify run build",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"prepare": "yarn build",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "yarn workspace ember-slugify run start",
"start:test-app": "yarn workspace test-app run start",
"test": "yarn workspaces run test",
"test:ember": "yarn workspace test-app run test:ember"
},
"devDependencies": {
"concurrently": "^8.2.0",
"prettier": "^3.3.3",
"prettier-plugin-ember-template-tag": "^2.0.2"
},
"workspaces": [
"ember-slugify",
"test-app"
]
}