forked from olydis/node-in-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 961 Bytes
/
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
{
"name": "node.box",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "shx cp -r node_modules/xterm/dist www/xterm && pushd \"test/browserRunner\" && npm install && popd && git config --global core.longpaths true && shx rm -rf www/node && git clone --depth 1 https://github.com/olydis/node www/node && pushd \"www/node\" && git filter-branch --prune-empty --subdirectory-filter lib HEAD && shx rm -rf .git && popd",
"start": "http-server www -p 8000 -i false -c-1\"",
"test": "mocha test --timeout 60000",
"build": "start cmd /c \"cd nodeos/host && tsc -w\" && start cmd /c \"cd nodeos/node && tsc -w\""
},
"author": "Johannes Bader",
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.28",
"@types/xterm": "^2.0.3",
"http-server": "^0.10.0",
"mocha": "^4.0.1",
"typescript": "^2.5.2"
},
"dependencies": {
"shx": "^0.2.2",
"xterm": "^2.9.2"
}
}