Add a package.json for managing frontend dependencies
This allows us to install all but compass locally in the project rather than relying on global executables.
Showing
package.json
0 → 100644
{ | ||
"name": "h", | ||
"private": true, | ||
"version": "0.0.0", | ||
"description": "The Internet, peer reviewed.", | ||
"devDependencies": { | ||
"coffee-script": "1.7.1", | ||
"clean-css": "2.2.2", | ||
"uglify-js": "2.4.14" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/hypothesis/h.git" | ||
}, | ||
"license": "Simplified BSD License", | ||
"bugs": { | ||
"url": "https://github.com/hypothesis/h/issues" | ||
}, | ||
"homepage": "https://github.com/hypothesis/h" | ||
} |
Please register or sign in to comment