forked from node-red-contrib-themes/theme-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "@node-red-contrib-themes/theme-collection",
"version": "3.1.1",
"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 ./scripts/init.js",
"dev": "node ./scripts/dev.js",
"create-theme": "node ./scripts/create-theme.js",
"build": "node ./scripts/build.js",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"author": "Mauricio Bonani @mbonani",
"funding": {
"type": "Buy me a coffee",
"url": "https://www.buymeacoffee.com/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": {
"command-line-args": "5.2.1",
"csso": "5.0.5",
"fs-extra": "11.1.1",
"nodemon": "3.0.1",
"nopt": "7.2.0",
"ora": "7.0.1",
"sass": "1.66.1"
},
"node-red": {
"version": ">=3.0",
"plugins": {
"node-red-contrib-themes": "themes.js"
}
},
"engines": {
"node": ">=14.x"
}
}