-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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": "array-query",
"version": "0.2.2",
"description": "Provides an interface to pull objects out of a JavaScript array with minimal code. Useful for Backbone collections and similar scenarios.",
"type": "module",
"author": "Jacob Wright <[email protected]>",
"keywords": [
"array",
"database",
"query",
"select",
"where"
],
"files": [
"dist"
],
"main": "./dist/array-query.umd.cjs",
"module": "./dist/array-query.js",
"types": "./dist/query.d.ts",
"exports": {
".": {
"import": "./dist/array-query.js",
"require": "./dist/array-query.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"pretest": "npm run build",
"prepublishOnly": "npm run build"
},
"maintainers": [
{
"name": "Jacob Wright",
"email": "[email protected]",
"web": "http://jacwright.com"
}
],
"contributors": [
{
"name": "Jacob Wright",
"email": "[email protected]",
"web": "http://jacwright.com"
}
],
"homepage": "https://github.com/jacwright/array-query",
"repository": {
"type": "git",
"url": "git://github.com/jacwright/array-query.git"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"jest": "^29.5.0",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.1.0"
}
}