Last active
December 31, 2015 02:39
-
-
Save mikeerickson/7921972 to your computer and use it in GitHub Desktop.
Starter package.json file - Download file
- Set appname and version properties
- Call npm install
- Get to work!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "laravel-rest", | |
| "version": "0.0.1", | |
| "description": "Sample Laravel Restified Application", | |
| "main": "Gruntfile.js", | |
| "dependencies": { | |
| "grunt": "~0.4.2" | |
| }, | |
| "devDependencies": { | |
| "grunt": "~0.4.2", | |
| "grunt-contrib-less": "~0.8.3", | |
| "grunt-contrib-uglify": "~0.2.7", | |
| "grunt-contrib-watch": "~0.5.3", | |
| "grunt-contrib-cssmin": "~0.7.0", | |
| "grunt-phpunit": "~0.3.1" | |
| }, | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "git@git2.eu1.frbit.com:laravel-rest.git" | |
| }, | |
| "author": "", | |
| "license": "BSD-2-Clause" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment