adaptive-expressions
Version:
Common Expression Language
67 lines • 2.53 kB
JSON
{
"name": "adaptive-expressions",
"author": "Microsoft Corp.",
"description": "Common Expression Language",
"version": "4.17.0-blobs1",
"license": "MIT",
"keywords": [
"botbuilder",
"botframework",
"expression"
],
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"main": "./lib/index.js",
"browser": "./lib/browser.js",
"typings": "./lib/index.d.ts",
"dependencies": {
"@microsoft/recognizers-text-data-types-timex-expression": "1.3.0",
"@types/atob-lite": "^2.0.0",
"@types/btoa-lite": "^1.0.0",
"@types/lodash.isequal": "^4.5.5",
"@types/lru-cache": "^5.1.0",
"antlr4ts": "0.5.0-alpha.3",
"atob-lite": "^2.0.0",
"big-integer": "^1.6.48",
"@types/xmldom": "^0.1.30",
"btoa-lite": "^1.0.0",
"d3-format": "^1.4.4",
"dayjs": "^1.10.3",
"jspath": "^0.4.0",
"lodash.isequal": "^4.5.0",
"lru-cache": "^5.1.1",
"uuid": "^8.3.2",
"fast-xml-parser": "^3.19.0",
"@xmldom/xmldom": "^0.7.4",
"xpath": "^0.0.32"
},
"devDependencies": {
"@types/jspath": "^0.4.0",
"antlr4ts-cli": "0.5.0-alpha.3",
"typescript": "3.5.3"
},
"scripts": {
"build:src": "tsc -b",
"build:tests": "tsc -p tests/tsconfig.json",
"build": "npm-run-all build:src build:tests",
"browserify": "browserify lib/browser.js -s AEL --debug -p [ tinyify --no-flat ] | exorcist lib/browser.js.map | sponge lib/browser.js",
"postbuild": "rimraf lib/browser.* && shx cp lib/index.js lib/browser.js && yarn browserify",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"depcheck": "depcheck --config ../../.depcheckrc --ignores sinon,@types/xmldom",
"build-docs": "typedoc --theme markdown --entryPoint adaptive-expressions --excludePrivate --includeDeclarations --ignoreCompilerErrors --module amd --out ..\\..\\doc\\adaptive-expressions .\\lib\\index.d.ts --hideGenerator --name \"Bot Builder SDK - Expression\" --readme none",
"test": "yarn build && mocha tests --timeout 60000",
"test:compat": "api-extractor run --verbose",
"lint": "eslint . --ext .js,.ts",
"antlr-build-expression": "antlr4ts src/parser/ExpressionAntlrLexer.g4 -o src/parser/generated && antlr4ts src/parser/ExpressionAntlrParser.g4 -visitor -o src/parser/generated",
"antlr-build-commonregex": "antlr4ts src/CommonRegex.g4 -o src/generated -visitor"
},
"files": [
"lib",
"src"
]
}