-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 815 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 815 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
31
32
33
34
35
36
37
38
{
"name": "array-back",
"author": "Lloyd Brookes <opensource@75lb.com>",
"version": "6.2.3",
"description": "Guarantees an array back",
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/array-back.git"
},
"license": "MIT",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"type": "module",
"keywords": [
"to",
"convert",
"return",
"array",
"arrayify"
],
"engines": {
"node": ">=12.17"
},
"files": [
"index.js",
"index.mjs",
"dist"
],
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "75lb-nature test-runner test.js",
"docs": "75lb-nature jsdoc2md -t README.hbs index.js > README.md",
"dist": "75lb-nature cjs-build index.js"
},
"devDependencies": {}
}