-
Notifications
You must be signed in to change notification settings - Fork 296
/
package.json
38 lines (38 loc) · 1.34 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": "windy-plugin-template",
"version": "3.0.0",
"description": "Template for developing Windy Plugins",
"main": "dist/plugin.min.js",
"type": "module",
"scripts": {
"build": "rm -rf dist && mkdir dist && SERVE=false rollup -c && cp package.json dist/",
"start": "rollup -w -c",
"example01": "CONFIG=example01 rollup -w -c",
"example02": "CONFIG=example02 rollup -w -c",
"example03": "CONFIG=example03 rollup -w -c",
"example04": "CONFIG=example04 rollup -w -c",
"example05": "CONFIG=example05 rollup -w -c",
"example06": "CONFIG=example06 rollup -w -c",
"example07": "CONFIG=example07 rollup -w -c",
"build:all-examples": "for number in 01 02 03 04 05 06; do CONFIG=example$number SERVE=false rollup -c; done",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windycom/windy-plugin-template.git"
},
"keywords": [
"windy",
"windy.com",
"plugins"
],
"author": "Windyty, S.E.",
"license": "ISC",
"bugs": {
"url": "https://github.com/windycom/windy-plugin-template/issues"
},
"homepage": "https://docs.windy-plugins.com/",
"dependencies": {
"@windycom/plugin-devtools": "^2.0.0"
}
}