-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 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
43
44
45
{
"name": "lodash.product",
"version": "18.10.0",
"description": "Calculates the Cartesian product between multiple collections.",
"keywords": [
"array",
"cartesian",
"collection",
"combinatorics",
"lodash",
"mixin",
"product"
],
"repository": "github:SeregPie/lodash.product",
"license": "MIT",
"author": "Sergej Sintschilin <seregpie@gmail.com>",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "node test"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.2.0",
"@types/lodash": "^4.14.191",
"lodash": "^4.17.21",
"rollup": "^3.7.5"
},
"peerDependencies": {
"@types/lodash": "^4",
"lodash": "^4"
},
"peerDependenciesMeta": {
"@types/lodash": {
"optional": true
}
}
}