main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[d565449] | 1 | {
|
---|
| 2 | "name": "@ungap/structured-clone",
|
---|
| 3 | "version": "1.2.0",
|
---|
| 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": "^15.0.2",
|
---|
| 23 | "@rollup/plugin-terser": "^0.4.1",
|
---|
| 24 | "ascjs": "^5.0.1",
|
---|
| 25 | "c8": "^7.13.0",
|
---|
| 26 | "coveralls": "^3.1.1",
|
---|
| 27 | "rollup": "^3.21.4"
|
---|
| 28 | },
|
---|
| 29 | "module": "./esm/index.js",
|
---|
| 30 | "type": "module",
|
---|
| 31 | "exports": {
|
---|
| 32 | ".": {
|
---|
| 33 | "import": "./esm/index.js",
|
---|
| 34 | "default": "./cjs/index.js"
|
---|
| 35 | },
|
---|
| 36 | "./json": {
|
---|
| 37 | "import": "./esm/json.js",
|
---|
| 38 | "default": "./cjs/json.js"
|
---|
| 39 | },
|
---|
| 40 | "./package.json": "./package.json"
|
---|
| 41 | },
|
---|
| 42 | "directories": {
|
---|
| 43 | "test": "test"
|
---|
| 44 | },
|
---|
| 45 | "repository": {
|
---|
| 46 | "type": "git",
|
---|
| 47 | "url": "git+https://github.com/ungap/structured-clone.git"
|
---|
| 48 | },
|
---|
| 49 | "bugs": {
|
---|
| 50 | "url": "https://github.com/ungap/structured-clone/issues"
|
---|
| 51 | },
|
---|
| 52 | "homepage": "https://github.com/ungap/structured-clone#readme"
|
---|
| 53 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.