-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "facet-search",
"version": "1.0.6",
"sideEffects": false,
"repository": {
"url": "https://github.com/R-Bower/facet-search"
},
"main": "dist/facets.cjs.js",
"module": "dist/facets.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"test": "esno node_modules/.bin/mocha tests/**.spec.ts",
"test-debug": "esno node_modules/.bin/mocha tests/nested-facet-arrays.spec.ts",
"build": "npm-run-all clean compile-source compile-types generate-type-files",
"clean": "rimraf ./dist",
"compile-source": "rollup --config rollup.config.js",
"compile-types": "tsc -P tsconfig.build.json",
"deploy": "esno scripts/deploy.ts",
"generate-type-files": "esno scripts/post-build.ts",
"watch": "tsc -P tsconfig.json -w"
},
"dependencies": {
"bitset": "^5.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@rollup/plugin-typescript": "^8.4.0",
"@types/chai": "^4.3.1",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.1",
"@types/lodash": "^4.14.184",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.14",
"chai": "^4.3.6",
"eslint": "8.22.0",
"eslint-config-rbower-typescript": "^1.0.8",
"esno": "^0.16.3",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"inquirer": "^9.1.1",
"lerna": "5.1.6",
"match-sorter": "^6.3.1",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.8.0",
"typescript": "4.8.2"
},
"peerDependencies": {
"match-sorter": ">=6.3.1"
},
"packageManager": "[email protected]"
}