└── test └── fixtures └── package.json /test/fixtures/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "playground-repo", 3 | "description": "My personal playground", 4 | "version": "0.0.1", 5 | "homepage": "https://github.com/stefanbuck/playground-repo", 6 | "bugs": "https://github.com/stefanbuck/playground-repo/issues", 7 | "license": "MIT", 8 | "main": "index.js", 9 | "author": { 10 | "name": "Stefan Buck", 11 | "email": "dev@stefanbuck.com", 12 | "url": "http://stefanbuck.com" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/stefanbuck/playground-repo" 17 | }, 18 | "keywords": [], 19 | "dependencies": { 20 | "lodash": "2.4.1", 21 | "request": "^2.40.0", 22 | "modernizr": "Modernizr/Modernizr", 23 | "backbone": "jashkenas/backbone#master", 24 | "jquery": "jquery/jquery#1.x-master", 25 | "unknown-package-name": "latest" 26 | }, 27 | "devDependencies": { 28 | "chai": "^1.9.1", 29 | "gulp": "^3.6.2" 30 | }, 31 | "optionalDependencies": { 32 | "should": "^3.3.1" 33 | }, 34 | "peerDependencies": { 35 | "yo": ">=1.0.0" 36 | }, 37 | "scripts": { 38 | "coveralls": "gulp test && cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", 39 | "test": "gulp test" 40 | } 41 | } 42 | --------------------------------------------------------------------------------