-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
27 lines (27 loc) · 862 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
26
27
{
"name": "ember-dayjs",
"version": "0.0.1",
"private": true,
"repository": "",
"license": "MIT",
"author": "",
"workspaces": [
"ember-dayjs",
"test-app"
],
"scripts": {
"build": "npm run build --workspace ember-dayjs",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"prepare": "npm run build",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "npm start --workspace ember-dayjs",
"start:test-app": "npm start --workspace test-app",
"test": "npm run test --workspaces --if-present",
"deploy": "npm version patch && git push && git push origin --tags && npm publish --workspace ember-dayjs"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5"
}
}