-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 803 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "chunk-array",
"version": "1.0.2",
"description": "Turn an array into chunks of n-size",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot",
"test-travis": "node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"repository": {
"type": "git",
"url": "https://github.com/haio/chunk-array"
},
"keywords": [
"chunk",
"array",
"size"
],
"author": "haio",
"license": "MIT",
"bugs": {
"url": "https://github.com/haio/chunk-array/issues"
},
"homepage": "https://github.com/haio/chunk-array",
"devDependencies": {
"istanbul": "^0.3.5",
"mocha": "^2.1.0"
}
}