-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "smart-table-filter",
"version": "2.0.5",
"description": "takes a configuration object and returns a filter function operating on arrays",
"main": "./dist/bundle/index",
"module": "./dist/bundle/module.js",
"types": "./dist/declarations/index.d.ts",
"scripts": {
"test:ci": "npm run build && npm test | tap-set-exit",
"test": "rollup -c ./test/rollup.config.js | node",
"build:clean": "rm -rf ./dist && mkdir -p ./dist/bundle && cp -r ./src ./dist/src",
"build:compile": "tsc",
"build:bundle": "rollup -c ./rollup/build.js && rollup -c ./rollup/cdn.js",
"build": "npm run build:clean && npm run build:compile && npm run build:bundle && rm -rf dist/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-filter.git"
},
"keywords": [
"filter",
"array",
"smart-table"
],
"files": [
"dist"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-filter/issues"
},
"homepage": "https://github.com/smart-table/smart-table-filter#readme",
"dependencies": {
"smart-table-json-pointer": "^3.0.0",
"smart-table-operators": "^2.0.10"
},
"devDependencies": {
"rollup": "^1.21.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tap-set-exit": "^1.1.1",
"typescript": "^3.6.3",
"zora": "^3.0.3"
}
}