-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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": "mesa-cli",
"version": "2.0.5",
"description": "Command-line interface to download, watch and publish Mesa Scripts",
"repository": {
"type": "git",
"url": "git+https://github.com/shoppad/mesa-cli.git"
},
"author": "ShopPad",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/shoppad/mesa-cli/issues"
},
"homepage": "https://getmesa.com",
"watch": {
"push": {
"patterns": [
"*.js"
],
"runOnChangeOnly": true
}
},
"scripts": {
"watch": "./scripts/cli.js watch",
"push": "./scripts/cli.js push",
"pull": "./scripts/cli.js pull",
"initialize": "./scripts/cli.js initialize",
"replay": "./scripts/cli.js replay",
"logs": "./scripts/cli.js logs",
"fields": "./scripts/generate-fields.js"
},
"bin": {
"mesa": "./scripts/cli.js",
"mesa-fields": "./scripts/generate-fields.js"
},
"dependencies": {
"axios": "^0.18.0",
"commander": "^2.20.0",
"config-yml": "^0.10.3",
"shelljs": "^0.8.3",
"watch": "^1.0.2"
}
}