-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.38 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "fast-cartesian-product",
"version": "2.0.1",
"description": "fast cartesian product",
"keywords": [
"cartesian",
"cartesian-product",
"product",
"sku"
],
"homepage": "https://github.com/fisker/fast-cartesian-product#readme",
"bugs": {
"url": "https://github.com/fisker/fast-cartesian-product/issues"
},
"repository": "fisker/fast-cartesian-product",
"funding": "https://github.com/fisker/fast-cartesian-product?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"jsdelivr": "./dist/index.min.js",
"unpkg": "./dist/index.min.js",
"module": "./dist/index.mjs",
"browser": "./dist/index.min.js",
"files": [
"dist"
],
"scripts": {
"benchmark": "node benchmark",
"benchmark2": "node benchmark/benchmarkify.js",
"build": "run-p build:*",
"build:js": "rollup --config",
"clean": "run-p clean:*",
"clean:dist": "del-cli dist",
"dist": "run-p dist:*",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p format:*",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "yarn lint:markdown --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint \"**/*.{js,mjs,cjs,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,cjs,mjs,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"release": "run-s clean build format test dist",
"test": "ava",
"test-coverage": "nyc yarn test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"verbose": true
},
"nyc": {
"include": [
"src/**"
],
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "17.2.0",
"@fisker/commitlint-config": "2.0.5",
"@fisker/eslint-config": "10.2.4",
"@fisker/husky-config": "4.1.2",
"@fisker/lint-staged-config": "3.1.5",
"@fisker/prettier-config": "5.0.6",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"ava": "5.1.0",
"babel-plugin-transform-async-to-promises": "0.8.18",
"benchmark": "2.1.4",
"benchmarkify": "3.0.0",
"cp-file": "10.0.0",
"cz-conventional-changelog": "3.3.0",
"del": "7.0.0",
"del-cli": "5.0.0",
"eslint": "8.27.0",
"esm-utils": "4.1.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"markdownlint-cli": "0.32.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.7.1",
"pretty-format": "29.3.1",
"rollup": "3.3.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-prettier": "3.0.0",
"rollup-plugin-terser": "7.0.2",
"sort-package-json": "2.1.0",
"tempy": "3.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}