Path: blob/master/node_modules/array-back/package.json
1126 views
{1"name": "array-back",2"author": "Lloyd Brookes <[email protected]>",3"version": "3.1.0",4"description": "Guarantees an array back",5"repository": "https://github.com/75lb/array-back.git",6"license": "MIT",7"main": "dist/index.js",8"keywords": [9"to",10"convert",11"return",12"array",13"arrayify"14],15"engines": {16"node": ">=6"17},18"files": [19"index.mjs",20"dist/index.js"21],22"scripts": {23"test": "npm run test:esm && npm run test:js",24"test:esm": "node --experimental-modules test.mjs",25"test:js": "npm run dist:test && node dist/test.js",26"docs": "jsdoc2md -t README.hbs index.mjs -c build/jsdoc.conf > README.md; echo",27"cover": "nyc test-runner test.js && nyc report --reporter=text-lcov | coveralls",28"dist": "rollup -c build/index.config.js",29"dist:test": "rollup -c build/test.config.js",30"lint": "standard **/*.mjs"31},32"dependencies": {},33"devDependencies": {34"coveralls": "^3.0.3",35"jsdoc-to-markdown": "^4.0.1",36"rollup": "^1.9.0",37"test-runner": "^0.5.1"38},39"standard": {40"ignore": [41"dist",42"build"43]44}45}464748