source: imaps-frontend/node_modules/fill-range/package.json

main
Last change on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "fill-range",
3 "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`",
4 "version": "7.1.1",
5 "homepage": "https://github.com/jonschlinkert/fill-range",
6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7 "contributors": [
8 "Edo Rivai (edo.rivai.nl)",
9 "Jon Schlinkert (http://twitter.com/jonschlinkert)",
10 "Paul Miller (paulmillr.com)",
11 "Rouven Weßling (www.rouvenwessling.de)",
12 "(https://github.com/wtgtybhertgeghgtwtg)"
13 ],
14 "repository": "jonschlinkert/fill-range",
15 "bugs": {
16 "url": "https://github.com/jonschlinkert/fill-range/issues"
17 },
18 "license": "MIT",
19 "files": [
20 "index.js"
21 ],
22 "main": "index.js",
23 "engines": {
24 "node": ">=8"
25 },
26 "scripts": {
27 "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
28 "mocha": "mocha --reporter dot",
29 "test": "npm run lint && npm run mocha",
30 "test:ci": "npm run test:cover",
31 "test:cover": "nyc npm run mocha"
32 },
33 "dependencies": {
34 "to-regex-range": "^5.0.1"
35 },
36 "devDependencies": {
37 "gulp-format-md": "^2.0.0",
38 "mocha": "^6.1.1",
39 "nyc": "^15.1.0"
40 },
41 "keywords": [
42 "alpha",
43 "alphabetical",
44 "array",
45 "bash",
46 "brace",
47 "expand",
48 "expansion",
49 "fill",
50 "glob",
51 "match",
52 "matches",
53 "matching",
54 "number",
55 "numerical",
56 "range",
57 "ranges",
58 "regex",
59 "sh"
60 ],
61 "verb": {
62 "toc": false,
63 "layout": "default",
64 "tasks": [
65 "readme"
66 ],
67 "plugins": [
68 "gulp-format-md"
69 ],
70 "lint": {
71 "reflinks": true
72 }
73 }
74}
Note: See TracBrowser for help on using the repository browser.