generated from UCLA-Creative-Labs/open-source-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 954 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
28
29
30
31
32
33
34
{
"name": "root",
"private": true,
"version": "0.0.0",
"description": "generate out-of-body music playlists with your friends",
"scripts": {
"preci": "rm -rf node_modules",
"ci": "yarn install --frozen-lockfile",
"build": "npx lerna run build",
"lint": "npx lerna run lint",
"lint:fix": "npx lerna exec -- yarn lint:fix",
"test": "npx lerna run test",
"postversion": "git push --atomic --follow-tags",
"tag:changed": "npx lerna version",
"tag:all": "npx lerna version --force-publish",
"no-lock": "./scripts/noPackageLock.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UCLA-Creative-Labs/aurgy.git"
},
"author": "Creative Labs UCLA",
"license": "MIT",
"homepage": "https://github.com/UCLA-Creative-Labs/aurgy#readme",
"workspaces": {
"packages": [
"packages/*",
"packages/@aurgy/*"
]
},
"devDependencies": {
"lerna": "^4.0.0"
}
}