forked from dsernst/quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 975 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
26
27
28
29
30
{
"name": "quotes",
"version": "1.0.0",
"description": "Display one of my favorite quotes",
"main": "index.html",
"scripts": {
"build": "browserify load-quote.js -v | uglifyjs -v > bundle.js && git add bundle.js && git commit -m 'Build bundle.js'",
"deploy": "git checkout gh-pages && git merge --no-edit master && npm run build && git push && git checkout -",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify load-quote.js -o bundle.js -dv"
},
"author": "David Ernst <npm@dsernst.com> (http://dsernst.com)",
"license": "UNLICENSED",
"dependencies": {
"yamljs": "^0.2.4"
},
"devDependencies": {
"browserify": "^11.2.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsernst/quotes.git"
},
"bugs": {
"url": "https://github.com/dsernst/quotes/issues"
},
"homepage": "https://github.com/dsernst/quotes#readme"
}