This repository was archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.33 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.33 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
{
"name": "tw5-thirdflow",
"version": "1.2.11",
"author": "TheDiveO <thediveo@gmx.eu>",
"description": "Third Flow plugin development process support for TiddlyWiki5",
"homepage": "https://github.com/TheDiveO/ThirdFlow",
"license": "(MIT OR CC-BY-3.0)",
"bugs": "https://github.com/TheDiveO/ThirdFlow/issues",
"keywords": [
"tiddlywiki",
"tiddlywiki5",
"plugin",
"thirdflow"
],
"config": {
"port": "8080"
},
"main": "thirdflow.js",
"scripts": {
"start": "tiddlywiki editions/develop --verbose --server $npm_package_config_port $:/core/save/all text/plain text/html & echo $! > tw.pid",
"stop": "kill `cat tw.pid` && rm tw.pid",
"winstart": "start \"ThirdFlow Develop\" cmd /c tiddlywiki editions/develop --verbose --server %npm_package_config_port $:/core/save/all text/plain text/html",
"winstop": "taskkill /fi \"WINDOWTITLE eq ThirdFlow Develop\"",
"develop": "tiddlywiki editions/develop --verbose --server $npm_package_config_port $:/core/save/all text/plain text/html",
"release": "tiddlywiki editions/release --verbose --build release",
"test": "tiddlywiki editions/release --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/TheDiveO/ThirdFlow.git"
},
"dependencies": {
"tiddlywiki": "^5.1.20"
},
"engines": {
"node": ">=4.6.0"
}
}