-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 932 Bytes
/
package.json
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
{
"name": "array-back",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "6.2.2",
"description": "Guarantees an array back",
"repository": "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:node",
"test:node": "test-runner test.js",
"test:web": "web-runner test.js",
"docs": "jsdoc2md -t README.hbs index.js > README.md",
"dist": "rollup -c"
},
"devDependencies": {
"isomorphic-assert": "^1.0.0",
"jsdoc-to-markdown": "^7.1.0",
"rollup": "^2.64.0",
"test-object-model": "^0.7.1",
"test-runner": "^0.10.0"
}
}