-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "@appscode/json-filter",
"version": "0.0.5",
"description": "A pakcage to filter a json object depending on an array of operations given",
"main": "dist/json-filter.min.js",
"scripts": {
"test": "rollup --config rollup.config.js && node test.js",
"build": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appscode/json-filter.git"
},
"keywords": [
"jq-web",
"jq",
"json-filter",
"filter",
"json"
],
"author": "Appscode Front-end Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appscode/json-filter/issues"
},
"homepage": "https://github.com/appscode/json-filter#readme",
"dependencies": {
"json-ptr": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^13.0.1",
"@rollup/plugin-node-resolve": "^8.4.0",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^6.1.0",
"tslib": "^2.0.0"
}
}