wishthis/node_modules/array-initial/package.json

47 lines
933 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "array-initial",
"description": "Get all but the last element or last n elements of an array.",
"version": "1.1.0",
"homepage": "https://github.com/jonschlinkert/array-initial",
2022-01-21 08:28:41 +00:00
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
2022-04-08 10:55:35 +00:00
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/array-initial.git"
},
2022-01-21 08:28:41 +00:00
"bugs": {
"url": "https://github.com/jonschlinkert/array-initial/issues"
},
2022-04-08 10:55:35 +00:00
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha -R spec"
2022-01-21 08:28:41 +00:00
},
"devDependencies": {
"mocha": "^2.0.0",
"should": "^11.2.1"
},
2022-04-08 10:55:35 +00:00
"dependencies": {
"array-slice": "^1.0.0",
"is-number": "^4.0.0"
2022-01-21 08:28:41 +00:00
},
"keywords": [
"array",
"fast",
"first",
"initial",
"javascript",
"js",
"last",
"rest",
"util",
"utility",
"utils"
2022-04-08 10:55:35 +00:00
]
2022-01-21 08:28:41 +00:00
}