UNPKG

lodash-snippets

Version:
59 lines (58 loc) 1.42 kB
{ "name": "lodash-snippets", "displayName": "Lodash Snippets", "description": "Snippets for popular lodash functions.", "version": "0.6.0", "publisher": "tomphilbin", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/tomphilbin/lodash-snippets.git" }, "engines": { "vscode": "^0.10.10" }, "categories": [ "Snippets" ], "keywords": [ "Javascript", "Typescript", "Lo-Dash", "lodash", "snippets" ], "icon": "lodash-icon.png", "contributes": { "snippets": [ { "language": "javascript", "path": "./javascript.json" }, { "language": "typescript", "path": "./javascript.json" }, { "language": "javascriptreact", "path": "./javascript.json" }, { "language": "typescriptreact", "path": "./javascript.json" } ] }, "scripts": { "start": "npm run build-jsdoc && node index.js", "test": "node node_modules/mocha/bin/mocha test/specs --require test/helpers/mocha-chai.helper.js", "tdd": "node node_modules/mocha/bin/mocha test/specs -w --require test/helpers/mocha-chai.helper.js", "build-jsdoc": "node node_modules/jsdoc/jsdoc node_modules/lodash -X > jsdoc-output.json" }, "devDependencies": { "chai": "^3.5.0", "jsdoc": "^3.4.0", "lodash": "^4.12.0", "mocha": "^2.4.5" } }