forked from theSherwood/JSLiteTiddlywiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.06 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
{
"name": "jslite",
"version": "0.0.1",
"author": "admls",
"description": "limited but safe inline javascript",
"homepage": "...",
"license": "...",
"bugs": "...",
"keywords": [
"tiddlywiki",
"tiddlywiki5",
"wiki",
"plugin",
"ThirdFlow"
],
"main": "main.js",
"scripts": {
"start": "tiddlywiki editions/develop --verbose --server 8080 $:/core/save/all text/plain text/html & echo $! > tw.pid",
"stop": "kill `cat tw.pid` && rm tw.pid",
"winstart": "start \"TW5 Plugin Develop\" cmd /c tiddlywiki editions/develop --verbose --server 8080 $:/core/save/all text/plain text/html",
"winstop": "taskkill /fi \"WINDOWTITLE eq TW5 Plugin Develop\"",
"develop": "tiddlywiki editions/develop --verbose --server 8080 $:/core/save/all text/plain text/html",
"release": "tiddlywiki editions/release --verbose --build release && node move-demowiki.js"
},
"dependencies": {
"tiddlywiki": ">=5.1.11",
"tw5-thirdflow": ">=1.2.0"
},
"devDependencies": {},
"bundleDependencies": [],
"engines": {
"node": ">=0.8.2"
}
}