File size: 1,151 Bytes
78c921d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  "name": "array-back",
  "author": "Lloyd Brookes <75pound@gmail.com>",
  "version": "3.1.0",
  "description": "Guarantees an array back",
  "repository": "https://github.com/75lb/array-back.git",
  "license": "MIT",
  "main": "dist/index.js",
  "keywords": [
    "to",
    "convert",
    "return",
    "array",
    "arrayify"
  ],
  "engines": {
    "node": ">=6"
  },
  "files": [
    "index.mjs",
    "dist/index.js"
  ],
  "scripts": {
    "test": "npm run test:esm && npm run test:js",
    "test:esm": "node --experimental-modules test.mjs",
    "test:js": "npm run dist:test && node dist/test.js",
    "docs": "jsdoc2md -t README.hbs index.mjs -c build/jsdoc.conf > README.md; echo",
    "cover": "nyc test-runner test.js && nyc report --reporter=text-lcov | coveralls",
    "dist": "rollup -c build/index.config.js",
    "dist:test": "rollup -c build/test.config.js",
    "lint": "standard **/*.mjs"
  },
  "dependencies": {},
  "devDependencies": {
    "coveralls": "^3.0.3",
    "jsdoc-to-markdown": "^4.0.1",
    "rollup": "^1.9.0",
    "test-runner": "^0.5.1"
  },
  "standard": {
    "ignore": [
      "dist",
      "build"
    ]
  }
}