-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "ofilterjs",
"version": "1.0.7",
"description": "OfilterJs is a data object filter processor for Javascript, which provides simpler, more convenient and more efficient data operations for development.",
"keywords": [
"ofilterjs",
"ofilter",
"object filter",
"object",
"filter",
"json",
"js",
"javascript",
"typescript",
"nodejs",
"es6",
"node",
"data filter",
"json filter"
],
"scripts": {
"build:esm": "node scripts/build.js -f esm",
"build:cjs": "node scripts/build.js -f cjs",
"build:global": "node scripts/build.js -f global",
"ts-types": "npx tsc -p tsconfig.json",
"build": "npm run ts-types && npm run build:global && npm run build:esm && npm run build:cjs",
"test": "node ./test/index.js"
},
"homepage": "https://github.com/wenlng/ofilter-js",
"bugs": {
"url": "https://github.com/wenlng/ofilter-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wenlng/ofilter-js.git"
},
"author": "Awen",
"license": "MIT",
"main": "./index.js",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"module": "./dist/ofilterjs.esm.js",
"unpkg": "./dist/ofilterjs.global.js",
"jsdelivr": "./dist/ofilterjs.global.js",
"exports": {
".": {
"node": {
"module": "./dist/ofilterjs.esm.js",
"require": "./dist/ofilterjs.cjs.js",
"import": "./index.mjs"
},
"browser": {
"import": "./dist/ofilterjs.esm.js",
"require": "./dist/ofilterjs.cjs.js"
},
"default": "./dist/ofilterjs.esm.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"browser": {
"dist/index.js": "./dist/ofilterjs.global.js"
},
"devDependencies": {
"esbuild": "^0.15.13",
"minimist": "^1.2.7",
"typescript": "^4.8.4"
}
}