|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "@ungap/structured-clone",
|
|---|
| 3 | "version": "1.3.1",
|
|---|
| 4 | "description": "A structuredClone polyfill",
|
|---|
| 5 | "main": "./cjs/index.js",
|
|---|
| 6 | "scripts": {
|
|---|
| 7 | "build": "npm run cjs && npm run rollup:json && npm run test",
|
|---|
| 8 | "cjs": "ascjs esm cjs",
|
|---|
| 9 | "coverage": "c8 report --reporter=text-lcov > ./coverage/lcov.info",
|
|---|
| 10 | "rollup:json": "rollup --config rollup/json.config.js",
|
|---|
| 11 | "test": "c8 node test/index.js"
|
|---|
| 12 | },
|
|---|
| 13 | "keywords": [
|
|---|
| 14 | "recursion",
|
|---|
| 15 | "structured",
|
|---|
| 16 | "clone",
|
|---|
| 17 | "algorithm"
|
|---|
| 18 | ],
|
|---|
| 19 | "author": "Andrea Giammarchi",
|
|---|
| 20 | "license": "ISC",
|
|---|
| 21 | "devDependencies": {
|
|---|
| 22 | "@rollup/plugin-node-resolve": "^16.0.3",
|
|---|
| 23 | "@rollup/plugin-terser": "^1.0.0",
|
|---|
| 24 | "ascjs": "^6.0.3",
|
|---|
| 25 | "c8": "^11.0.0",
|
|---|
| 26 | "coveralls": "^3.1.1",
|
|---|
| 27 | "rollup": "^4.60.3"
|
|---|
| 28 | },
|
|---|
| 29 | "module": "./esm/index.js",
|
|---|
| 30 | "type": "module",
|
|---|
| 31 | "sideEffects": false,
|
|---|
| 32 | "exports": {
|
|---|
| 33 | ".": {
|
|---|
| 34 | "import": "./esm/index.js",
|
|---|
| 35 | "default": "./cjs/index.js"
|
|---|
| 36 | },
|
|---|
| 37 | "./json": {
|
|---|
| 38 | "import": "./esm/json.js",
|
|---|
| 39 | "default": "./cjs/json.js"
|
|---|
| 40 | },
|
|---|
| 41 | "./package.json": "./package.json"
|
|---|
| 42 | },
|
|---|
| 43 | "directories": {
|
|---|
| 44 | "test": "test"
|
|---|
| 45 | },
|
|---|
| 46 | "repository": {
|
|---|
| 47 | "type": "git",
|
|---|
| 48 | "url": "git+https://github.com/ungap/structured-clone.git"
|
|---|
| 49 | },
|
|---|
| 50 | "bugs": {
|
|---|
| 51 | "url": "https://github.com/ungap/structured-clone/issues"
|
|---|
| 52 | },
|
|---|
| 53 | "homepage": "https://github.com/ungap/structured-clone#readme"
|
|---|
| 54 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.