forked from ghosh/Micromodal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
38
{
"name": "@micromodal/repo",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"lib",
"site"
],
"browserslist": [
"last 2 version"
],
"main": "index.js",
"scripts": {
"dev": "concurrently \"yarn lib:dev\" \"yarn site:dev\"",
"build": "yarn lib:build && yarn site:build",
"shipit": "yarn workspace micromodal publish",
"deploy": "yarn workspace @micromodal/site deploy",
"test": "echo \"Error: no test specified\" && exit 1",
"lib:dev": "yarn workspace micromodal dev",
"lib:build": "yarn workspace micromodal build",
"site:dev": "yarn workspace @micromodal/site dev",
"site:build": "yarn workspace @micromodal/site build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghosh/micromodal.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ghosh/micromodal/issues"
},
"homepage": "https://github.com/ghosh/micromodal#readme",
"dependencies": {
"concurrently": "^4.1.2"
}
}