UNPKG

stated-js

Version:

JSONata embedded in JSON

97 lines (96 loc) 2.97 kB
{ "name": "stated-js", "version": "0.1.54", "license": "Apache-2.0", "description": "JSONata embedded in JSON", "main": "./dist/src/index.js", "module": "./dist/src/index.js", "exports": { ".": { "import": "./dist/bundle.mjs", "require": "./dist/bundle-common-js.cjs", "types": "./dist/src/index.d.ts" }, "./dist/src/TemplateProcessor.js": "./dist/src/TemplateProcessor.js", "./dist/src/CliCore.js": "./dist/src/CliCore.js", "./dist/src/StatedREPL.js": "./dist/src/StatedREPL.js", "./dist/src/TestUtils.js": "./dist/src/TestUtils.js", "./dist/src/DependencyFinder.js": "./dist/src/DependencyFinder.js", "./dist/src/JsonPointer.js": "./dist/src/JsonPointer.js", "./dist/src/utils/stringify.js": "./dist/src/utils/stringify.js", "./dist/src/utils/debounce.js": "./dist/src/utils/debounce.js", "./dist/src/utils/rateLimit.js": "./dist/src/utils/rateLimit.js" }, "scripts": { "clean": "rimraf dist", "build": "tsc && npm run webpack && npm run docs", "webpack": "webpack && webpack --config webpack.config.cjs.js && webpack --config webpack.nodeSingleBin.cjs.js", "test": "npm run clean && npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles", "test:bun": "npm run clean && npm run build && bun test", "test-fast": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "stated": "node --experimental-vm-modules dist/stated.js", "docs": "typedoc --out docs src/*" }, "bin": { "stated": "./dist/stated.js" }, "repository": { "type": "git", "url": "https://github.com/cisco-open/stated" }, "keywords": [ "jsonata", "json", "config", "state", "dag" ], "author": "Geoff Hendrey <ghendreyl@cisco.com>", "dependencies": { "@types/js-yaml": "^4.0.9", "@types/lodash": "^4.14.195", "@types/lodash-es": "^4.17.12", "@types/minimist": "^1.2.5", "chalk": "^5.3.0", "flatbuffers": "^23.5.26", "js-yaml": "^4.1.0", "json-colorizer": "^2.2.2", "jsonata": "2.0.4", "lodash": "^4.17.21", "lodash-es": "^4.17.21", "minimist": "^1.2.8", "pulsar-flex": "^1.1.1", "readline": "^1.3.0", "repl": "^0.1.3", "string-argv": "^0.3.2", "webpack-node-externals": "^3.0.0", "winston": "^3.10.0" }, "devDependencies": { "@babel/core": "^7.22.20", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", "@babel/preset-env": "^7.22.20", "@jest/globals": "latest", "babel-loader": "^9.1.3", "copy-webpack-plugin": "^11.0.0", "jest": "^29.7.0", "path-browserify": "^1.0.1", "rimraf": "^5.0.7", "typedoc": "^0.25.7", "typescript": "^5.3.3", "webpack": "^5.88.2", "webpack-cli": "^5.1.4" }, "files": [ "LICENSE", "dist/", "docs/" ], "jest": { "transform": {} }, "type": "module", "browser": { "child_process": false } }