-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1022 Bytes
/
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
{
"name": "jca_filter",
"version": "0.2.1",
"description": "Facilitate filters creation for JS-CRUD-API",
"keywords": [
"filter","js-crud-api","php-crud-api","helper"
],
"author": "Thierry PAGES",
"license": "MIT",
"module": "esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/thipages/jca-filter.git"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "npm run rollup:esm && npm run rollup:iife_min && npm run rollup:esm_min && npm run rollup:esm_watch",
"rollup:iife_min": "rollup --config rollup/rollup.config_iife_min.js",
"rollup:esm_min": "rollup --config rollup/rollup.config_esm_min.js",
"rollup:esm": "rollup --config rollup/rollup.config_esm.js",
"rollup:esm_watch": "rollup --config rollup/rollup.config_esm.js --w"
}
}