Skip to content
Permalink
3d9dadcd51
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (31 sloc) 790 Bytes
{
"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"
}
}