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