-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.8 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "trancio",
"version": "1.0.0",
"description": "Create an array of elements split into chunks",
"license": "MIT",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js",
"./ts": "./index.ts",
"./declaration": "./index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macarie/trancio.git"
},
"bugs": {
"url": "https://github.com/macarie/trancio/issues"
},
"homepage": "https://github.com/macarie/trancio#readme",
"author": {
"name": "Raul Macarie",
"email": "raul@macarie.me",
"url": "https://macarie.me"
},
"engines": {
"node": ">=11"
},
"files": [
"index.js",
"index.ts",
"index.d.ts"
],
"keywords": [
"array",
"chunk",
"helper",
"typescript",
"declaration",
"iterator",
"iterable",
"generator",
"functional",
"browser",
"node",
"module",
"esm"
],
"scripts": {
"ava": "c8 ava --verbose",
"compile:declaration": "tsc --emitdeclarationonly",
"compile:library": "esbuild --target=esnext --minify --outfile=index.js index.ts",
"compile": "run-p -s compile:*",
"lint:tsc": "tsc --noemit",
"lint:xo": "xo",
"lint": "run-p -s lint:*",
"test": "run-s -s compile ava",
"coverage": "c8 report --reporter=text-lcov | codecov --pipe --disable=gcov"
},
"devDependencies": {
"ava": "^3.10.1",
"c8": "^7.2.1",
"codecov": "^3.7.1",
"esbuild": "^0.6.3",
"npm-run-all": "^4.1.5",
"typescript": "^3.9.6",
"xo": "^0.32.1"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/import-index": [
"off"
],
"import/extensions": [
"off"
],
"import/no-useless-path-segments": [
"off"
],
"unicorn/no-fn-reference-in-iterator": [
"off"
]
}
},
"prettier": {
"semi": false,
"bracketSpacing": true,
"useTabs": true,
"endOfLine": "lf",
"trailingComma": "es5"
}
}