|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "es-module-lexer",
|
|---|
| 3 | "version": "2.1.0",
|
|---|
| 4 | "description": "Lexes ES modules returning their import/export metadata",
|
|---|
| 5 | "main": "dist/lexer.cjs",
|
|---|
| 6 | "module": "dist/lexer.js",
|
|---|
| 7 | "types": "types/lexer.d.ts",
|
|---|
| 8 | "exports": {
|
|---|
| 9 | ".": {
|
|---|
| 10 | "types": "./types/lexer.d.ts",
|
|---|
| 11 | "module": "./dist/lexer.js",
|
|---|
| 12 | "import": "./dist/lexer.js",
|
|---|
| 13 | "require": "./dist/lexer.cjs"
|
|---|
| 14 | },
|
|---|
| 15 | "./js": {
|
|---|
| 16 | "types": "./types/lexer.d.ts",
|
|---|
| 17 | "default": "./dist/lexer.asm.js"
|
|---|
| 18 | }
|
|---|
| 19 | },
|
|---|
| 20 | "scripts": {
|
|---|
| 21 | "build": "npm install -g chomp ; chomp build",
|
|---|
| 22 | "test": "npm install -g chomp ; chomp test"
|
|---|
| 23 | },
|
|---|
| 24 | "author": "Guy Bedford",
|
|---|
| 25 | "license": "MIT",
|
|---|
| 26 | "devDependencies": {
|
|---|
| 27 | "@babel/cli": "^7.5.5",
|
|---|
| 28 | "@babel/core": "^7.5.5",
|
|---|
| 29 | "@babel/plugin-transform-modules-commonjs": "^7.5.0",
|
|---|
| 30 | "@swc/cli": "^0.1.57",
|
|---|
| 31 | "@swc/core": "^1.2.224",
|
|---|
| 32 | "@types/node": "^18.7.1",
|
|---|
| 33 | "kleur": "^2.0.2",
|
|---|
| 34 | "mocha": "^5.2.0",
|
|---|
| 35 | "terser": "^5.19.4",
|
|---|
| 36 | "typescript": "^4.7.4"
|
|---|
| 37 | },
|
|---|
| 38 | "files": [
|
|---|
| 39 | "dist",
|
|---|
| 40 | "types",
|
|---|
| 41 | "lexer.js"
|
|---|
| 42 | ],
|
|---|
| 43 | "type": "module",
|
|---|
| 44 | "repository": {
|
|---|
| 45 | "type": "git",
|
|---|
| 46 | "url": "git+https://github.com/guybedford/es-module-lexer.git"
|
|---|
| 47 | },
|
|---|
| 48 | "bugs": {
|
|---|
| 49 | "url": "https://github.com/guybedford/es-module-lexer/issues"
|
|---|
| 50 | },
|
|---|
| 51 | "homepage": "https://github.com/guybedford/es-module-lexer#readme",
|
|---|
| 52 | "directories": {
|
|---|
| 53 | "lib": "lib",
|
|---|
| 54 | "test": "test"
|
|---|
| 55 | },
|
|---|
| 56 | "keywords": []
|
|---|
| 57 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.