UNPKG

finite-state-sdk

Version:

The Finite State SDK.

72 lines (71 loc) 2.21 kB
{ "name": "finite-state-sdk", "version": "0.0.1-beta.5", "description": "The Finite State SDK.", "author": "Finite State, Inc.", "keywords": [ "finite-state", "sdk", "finite-state-sdk" ], "license": "MIT", "repository": { "type": "git", "url": "git@github.com-finitestate:FiniteStateInc/finite-state-sdk-ts.git" }, "main": "dist/index.js", "umd:main": "dist/index.umd.js", "module": "dist/index.mjs", "unpkg": "dist/index.umd.js", "types": "dist/index.d.ts", "exports": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "default": "./dist/index.modern.mjs" }, "files": [ "dist" ], "scripts": { "build": "rm -rf dist && microbundle --tsconfig tsconfig.json --no-sourcemap", "dev": "microbundle --watch --tsconfig tsconfig.json --no-sourcemap", "test": "jest", "test-watch": "npx jest --watch --runInBand", "coverage": "nyc --reporter=lcov npm test", "test-debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand", "doc": "npx typedoc --placeInternalsInOwningModule --footerDate --favicon imgs/fs_logo.ico --entryPointStrategy expand src/", "eslint": "npx eslint .", "prettier-write": "npx prettier . --write", "prettier-check": "npx prettier . --check", "all": "npm run prettier-write && npm run eslint && npm run build && npm run doc" }, "devDependencies": { "@eslint/js": "^9.11.1", "@jest/globals": "^29.7.0", "@types/eslint__js": "^8.42.3", "@types/jest": "^29.5.12", "axios-mock-adapter": "^1.22.0", "eslint": "^9.11.1", "globals": "^15.9.0", "jest": "^29.7.0", "jsdoc": "^4.0.3", "microbundle": "^0.15.1", "mock-fs": "^5.2.0", "nock": "^13.5.4", "nyc": "^17.0.0", "prettier": "3.3.3", "ts-jest": "^29.2.0", "typedoc": "^0.26.5", "typedoc-plugin-extras": "^3.1.0", "typedoc-plugin-merge-modules": "^6.0.0", "typedoc-plugin-missing-exports": "^3.0.0", "typedoc-plugin-not-exported": "^0.1.6", "typedoc-plugin-rename-defaults": "^0.7.1", "typescript": "^5.5.4", "typescript-eslint": "^8.0.0" }, "dependencies": { "@types/estree": "^1.0.5", "axios": "^1.7.4" } }