Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
shopping/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (31 sloc)
790 Bytes
This file contains 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": "shopping", | |
"version": "1.0.0", | |
"description": "simple shopping list", | |
"main": "index.js", | |
"scripts": { | |
"app": "node index.js", | |
"lint": "node_modules/.bin/eslint modules/", | |
"test": "node spec/runTests", | |
"coverage": "./node_modules/.bin/istanbul cover -x **spec/** -x **index.js** -x **debug.js** ./node_modules/.bin/jasmine-node spec", | |
"doc": "node_modules/.bin/jsdoc modules/" | |
}, | |
"keywords": [ | |
"list", | |
"jasmine", | |
"module" | |
], | |
"author": "Mark J Tyers", | |
"license": "ISC", | |
"dependencies": { | |
"readline-sync": "^1.2.22" | |
}, | |
"devDependencies": { | |
"eslint": "^3.1.0", | |
"istanbul": "^0.4.0", | |
"jasmine": "^2.6.0", | |
"jasmine-console-reporter": "^1.2.7", | |
"jsdoc": "^3.4.0", | |
"node-inspector": "^0.12.8" | |
} | |
} |