forked from windycom/windy-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.26 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-examples",
"version": "0.5.0",
"description": "Windy plugin system enables anyone, with basic knowledge of Javascript to enhance Windy with new functionality (default desc).",
"main": "dist/plugin.js",
"scripts": {
"start": "node ./compiler.js --build --watch --prompt --serve --transpile",
"start-dev": "node ./compiler.js --build --watch --serve --transpile",
"prepublishOnly": "node ./test/prepublish.js",
"test": "node ./test/prepublish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windycom/windy-plugins"
},
"author": "Windyty, S.E.",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"chokidar": "^2.0.4",
"colorette": "^1.0.6",
"commander": "^2.19.0",
"consola": "^1.4.4",
"decache": "^4.4.0",
"express": "^4.16.4",
"fs-extra": "^7.0.0",
"less": "^3.8.1",
"prompts": "^1.1.1",
"riot-compiler": "^3.5.1",
"ucfirst": "^1.0.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-plugin-html": "^6.0.0",
"prettier": "^1.18.2"
}
}