-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
43 lines (43 loc) · 1.2 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
39
40
41
42
43
{
"name": "@micromodal/repo",
"version": "1.0.1",
"description": "",
"private": true,
"workspaces": [
"lib",
"docs",
"tests"
],
"main": "index.js",
"scripts": {
"dev": "concurrently \"yarn lib:dev\" \"yarn docs:dev\"",
"build": "yarn lib:build && yarn docs:build",
"docs:dev": "yarn workspace @micromodal/docs dev",
"docs:build": "yarn workspace @micromodal/docs build",
"lib:dev": "yarn workspace micromodal dev",
"lib:build": "yarn workspace micromodal build",
"test:serve": "yarn workspace @micromodal/tests start",
"test:gui": "yarn workspace @micromodal/tests cypress:open",
"test:cli": "yarn workspace @micromodal/tests cypress:cli",
"deploy:npm": "yarn workspace micromodal deploy",
"deploy:docs": "yarn workspace @micromodal/docs deploy"
},
"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": "^6.0.2",
"cypress": "9.0.0",
"eslint": "8.2.0"
},
"engines": {
"node": ">=10"
}
}