-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
59 lines (59 loc) · 1.54 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
59
{
"name": "requirebin",
"version": "0.1.1",
"description": "create programs in the browser using modules from NPM",
"scripts": {
"start": "wzrd embed.js:embed-bundle.js index.js:bundle.js -p 5000",
"build": "browserify embed.js -o embed-bundle.js && browserify embed2.js -o embed-bundle-v2.js && browserify index.js -o bundle.js --debug",
"minify": "cat bundle.js | uglifyjs -o bundle.js",
"modifyconfig": "sed -i '.bak' 's/envs.dev/envs.production/' config.js && rm config.js.bak",
"deploy": "standard && gh-pages-deploy",
"test": "standard"
},
"gh-pages-deploy": {
"cname": "requirebin.com",
"prep": [
"modifyconfig",
"build",
"minify"
],
"noprompt": false
},
"standard": {
"ignore": [
"flatui-deps.js",
"uglifyjs2-browser.js",
"lib/codemirror_modes/**",
"flatui/**"
]
},
"repository": {
"type": "git",
"url": "[email protected]:maxogden/requirebin.git"
},
"dependencies": {
"browser-module-sandbox": "^1.4.3",
"browser-request": "~0.3.1",
"concat-stream": "1.0.0",
"detective": "^4.3.1",
"element-class": "0.0.2",
"github-api": "0.7.0",
"github-oauth": "0.0.4",
"iframe": "^0.3.1",
"javascript-editor": "^1.0.3",
"jsonp": "0.0.3",
"keydown": "~0.0.3",
"nets": "^1.0.0"
},
"engines": {
"node": ">=0.8.x"
},
"devDependencies": {
"browserify": "^13.0.0",
"codemirror": "^5.0.0",
"extend": "^2.0.0",
"gh-pages-deploy": "^0.3.0",
"standard": "^5.0.0",
"wzrd": "^1.3.1"
}
}