-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
{
"name": "@filtering.js/filtering.js",
"title": "filtering.js",
"version": "1.0.16",
"description": "With filtering.js you can easily add filtering functionality to your project. It is a small, fast, and modern library without dependencies that can be used in node and browser environments.",
"keywords": [
"filter",
"items",
"ui"
],
"homepage": "https://robertpainsi.github.io/filtering.js/",
"bugs": {
"url": "https://github.com/robertpainsi/filtering.js/issues"
},
"author": "Robert Painsi",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/robertpainsi/filtering.js.git"
},
"exports": {
".": {
"import": "./dist/umd/index.core.js",
"require": "./dist/cjs/index.core.js"
},
"./core": {
"import": "./dist/umd/index.core.js",
"require": "./dist/cjs/index.core.js"
},
"./ui": {
"import": "./dist/umd/index.ui.js",
"require": "./dist/cjs/index.ui.js"
}
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"filemanager-webpack-plugin": "^8.0.0",
"jest": "^27.2.0",
"jsdom": "^22.1.0",
"natural-orderby": "^3.0.2",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}