forked from jsla/js.la
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"private": true,
"name": "js.la",
"version": "0.0.1",
"description": "The js.la web site",
"main": "index.js",
"scripts": {
"test": "echo \"Just running deploy script\" && exit 0",
"start": "harp server public",
"build": "browserify public/js/main.js -o public/js/bundle.js -d && npm run compress",
"compress": "uglifyjs -o public/js/bundle.min.js public/js/bundle.js",
"cibuild": "npm run build",
"dist": "rm -rf ./dist; harp compile ./public dist",
"deploy": "npm run dist && echo 'js.la' > dist/CNAME && surge dist",
"speakerimages": "node bin/convert-speaker-images.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jsla/js.la.git"
},
"keywords": [
"js.la"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsla/js.la/issues"
},
"homepage": "http://js.la",
"devDependencies": {
"browserify": "^11.1.0",
"harp": "^0.24.1",
"minimist": "^1.2.0",
"surge": "^0.19.0",
"uglify-js": "^2.3.6"
},
"dependencies": {
"eventemitter2": "^0.4.14",
"jquery": "^2.1.1",
"merge": "^1.2.0",
"raf": "^3.1.0"
}
}