smartrule/package.json

51 lines
1.1 KiB
JSON
Raw Normal View History

2020-01-20 08:47:35 +00:00
{
2023-07-10 08:17:53 +00:00
"name": "@push.rocks/smartrule",
2022-08-07 09:19:43 +00:00
"version": "2.0.1",
2020-01-20 08:47:35 +00:00
"private": false,
2024-04-14 16:14:46 +00:00
"description": "A library for creating and managing decision trees with smart rules.",
2022-08-07 09:19:43 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 09:18:02 +00:00
"type": "module",
2020-01-20 08:47:35 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-08-07 09:18:02 +00:00
"build": "(tsbuild --web)",
2022-08-07 09:19:43 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2020-01-20 08:47:35 +00:00
},
"devDependencies": {
2022-08-07 09:18:02 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4"
2020-01-20 08:47:35 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2022-08-07 09:19:43 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-01-20 08:47:35 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-08-07 09:19:43 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:14:46 +00:00
],
"keywords": [
"decision tree",
"rules engine",
"smart rules",
"typescript",
"nodejs",
"library"
2024-05-29 12:15:55 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartrule",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartrule.git"
}
2023-07-10 08:17:53 +00:00
}