-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1016 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
43
44
45
46
47
{
"name": "@evologi/join",
"version": "0.2.0",
"description": "Join strategies for Iterables, Maps, and Arrays.",
"main": "./join.cjs",
"types": "./join.d.ts",
"type": "module",
"exports": {
"import": "./join.mjs",
"require": "./join.cjs",
"types": "./join.d.ts"
},
"files": [
"join.cjs",
"join.d.ts",
"join.mjs"
],
"scripts": {
"build": "rollup -c",
"lint": "standard",
"test": "c8 ava",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evologi/join.git"
},
"keywords": [
"join",
"array",
"map",
"iterable",
"merge"
],
"author": "Evologi S.r.l. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evologi/join/issues"
},
"homepage": "https://github.com/evologi/join#readme",
"devDependencies": {
"ava": "^5.0.1",
"c8": "^7.12.0",
"rollup": "^2.79.1",
"standard": "^17.0.0"
}
}