-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
60 lines (60 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@node-red-contrib-themes/theme-collection",
"version": "4.1.0-beta",
"description": "A collection of themes for Node-RED",
"repository": {
"type": "git",
"url": "https://github.com/node-red-contrib-themes/theme-collection.git"
},
"keywords": [
"node-red",
"nodered",
"theme",
"themes",
"plugin",
"plugins",
"dark",
"light"
],
"scripts": {
"init": "node ./lib/init.js",
"dev": "node ./lib/dev.js",
"new-theme": "node ./lib/new-theme.js",
"build": "node ./lib/build.js",
"version": "git checkout -b release/$npm_package_version",
"postversion": "git commit -am 'Bump version to '$npm_package_version && git push -u origin release/$npm_package_version && git checkout dev"
},
"author": "Mauricio Bonani @mbonani",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/node-red-contrib-themes/theme-collection/issues"
},
"homepage": "https://github.com/node-red-contrib-themes/theme-collection#readme",
"devDependencies": {
"chalk": "5.3.0",
"chokidar": "4.0.1",
"command-line-args": "6.0.1",
"csso": "5.0.5",
"fs-extra": "11.2.0",
"khroma": "2.1.0",
"nodemon": "3.1.7",
"ora": "8.1.1",
"sass": "1.80.6"
},
"node-red": {
"version": ">=4.0",
"plugins": {
"node-red-contrib-themes": "themes.js"
}
},
"engines": {
"node": ">=18"
},
"files": [
"/themes",
"/themes.js"
]
}