-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.41 KB
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
{
"name": "js-crud-api",
"version": "0.4.2",
"description": "JavaScript API for php-crud-api",
"type": "module",
"keywords": [
"php-crud-api",
"javascript",
"database",
"rest-api",
"crud"
],
"author": "Thierry PAGES",
"license": "MIT",
"main": "./esm/index.js",
"module": "./esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/thipages/js-crud-api.git"
},
"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"
},
"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",
"test:unit": "node --test tests/unit-api-formats.test.js",
"test:sync": "node tests/sync-php-crud-tests.js",
"test:init:sqlite": "node tests/init-sqlite.js",
"test:rest": "node --test tests/run-php-crud-tests.test.js",
"test:jca": "node --test tests/run-jca-tests.test.js",
"test:build": "node tests/build-test-data.js"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4"
}
}