-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "cheeriobin",
"version": "0.1.1",
"description": "create programs in the browser using modules from NPM",
"scripts": {
"start": "beefy index.js:bundle.js 8080 --open -- -t brfs",
"build": "browserify -t brfs index.js -o bundle.js --debug",
"build-css": "node build-css.js",
"minify": "cat bundle.js | uglifyjs -o bundle.js",
"pm2": "pm2 start npm --name cheeriobin -- run start-production",
"start-production": "http-server . -i true -p 3005",
"setup": "cp scripts/cheeriobin.conf /etc/nginx/conf.d/cheeriobin.conf"
},
"repository": "git://github.com/intesso/cheeriobin",
"dependencies": {
"brfs": "^1.3.0",
"browser-module-sandbox": "intesso/browser-module-sandbox",
"debug": "^2.1.1",
"ejs": "^2.2.4",
"http-server": "^0.11.1",
"iframe": "^0.3.1",
"keydown": "intesso/keydown",
"marked": "^0.3.3",
"text-to-string": "^1.0.0"
},
"engines": {
"node": ">=0.10.x"
},
"devDependencies": {
"beefy": "~2.1.2",
"browserify": "~8.1.3",
"rework": "^1.0.1",
"rework-bootstrap": "^1.0.2",
"uglify-js": "^3.3.24"
}
}