29 lines
648 B
JSON
29 lines
648 B
JSON
|
{
|
||
|
"name": "parse-numeric-range",
|
||
|
"version": "1.3.0",
|
||
|
"description": "Takes a string, such as \"1,2,3-10,5-8\" and turns it into an array of numbers",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "./node_modules/mocha/bin/mocha --require esm"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"parse",
|
||
|
"numbers",
|
||
|
"ranges",
|
||
|
"utility",
|
||
|
"arrays"
|
||
|
],
|
||
|
"author": "Euan Kemp",
|
||
|
"license": "ISC",
|
||
|
"homepage": "https://github.com/euank/node-parse-numeric-range",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/euank/node-parse-numeric-range.git"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"chai": "*",
|
||
|
"mocha": "*",
|
||
|
"esm": "*"
|
||
|
}
|
||
|
}
|