UNPKG

@fink/snippet

Version:
64 lines (63 loc) 1.71 kB
{ "name": "@fink/snippet", "version": "2.3.1", "keywords": [ "fink", "fink-lang", "code-highlight" ], "license": "MIT", "private": false, "publishConfig": { "access": "public" }, "type": "module", "exports": { "./*": { "import": "./*", "require": "./cjs/*" } }, "engines": { "node": ">=14.13.0" }, "repository": { "type": "git", "url": "git@github.com:fink-lang/snippet.git" }, "bugs": "https://github.com/fink-lang/snippet/issues", "homepage": "https://github.com/fink-lang/snippet", "scripts": { "default": "run clean test build", "clean": "rimraf ./build", "build": "run build:*", "build:dir": "mkdir -p ./build/pkg/", "build:fnk-esm": "fnk --module-type esm --src src --out-dir build/pkg --ignore 'src/**/*.test.fnk'", "build:fnk-cjs": "fnk --module-type cjs --src src --out-dir build/pkg/cjs --ignore 'src/**/*.test.fnk'", "build:files": "cp ./package.json ./README.md ./LICENSE ./build/pkg/", "build:files-cjs": "cp ./package-cjs.json ./build/pkg/cjs/package.json", "test": "run jest", "jest": "jest --verbose --runInBand --no-cache ", "cd": "run clean test build release", "release": "semantic-release" }, "devDependencies": { "@fink/cli": "^8.0.0", "@fink/jest": "^7.0.0", "@fink/larix": "^18.0.0", "@fink/loxia": "^21.0.0", "commitizen": "^4.2.1", "cz-conventional-changelog": "^3.3.0", "jest-cli": "^27.0.0", "npx-run": "^2.1.2", "semantic-release": "^17.1.2" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "dependencies": { "@fink/std-lib": "^8.2.0" } }