smartchok/package.json

66 lines
1.6 KiB
JSON
Raw Normal View History

2016-09-22 14:33:44 +00:00
{
2023-07-10 00:42:35 +00:00
"name": "@push.rocks/smartchok",
2024-02-29 13:42:34 +00:00
"version": "1.0.33",
2018-10-10 15:06:40 +00:00
"private": false,
2024-04-14 15:24:25 +00:00
"description": "A smart wrapper for chokidar to facilitate file watching with enhanced features.",
2021-11-29 19:26:59 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-09-22 14:33:44 +00:00
"scripts": {
2018-10-10 15:06:40 +00:00
"test": "(npm run prepareTest && tstest test/)",
"prepareTest": "(rm -f ./test/assets/hi.txt)",
2024-01-28 00:18:39 +00:00
"build": "tsbuild",
"buildDocs": "tsdoc"
2016-09-22 14:33:44 +00:00
},
"repository": {
"type": "git",
2024-01-28 00:18:39 +00:00
"url": "git+https://gitlab.com/push.rocks/smartchok.git"
2016-09-22 14:33:44 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2024-01-28 00:18:39 +00:00
"url": "https://gitlab.com/push.rocks/smartchok/issues"
2016-09-22 14:33:44 +00:00
},
2024-01-28 00:18:39 +00:00
"homepage": "https://gitlab.com/push.rocks/smartchok#readme",
2016-09-22 14:33:44 +00:00
"dependencies": {
2024-01-28 00:18:39 +00:00
"@push.rocks/lik": "^6.0.2",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrx": "^3.0.2",
2024-01-28 01:11:49 +00:00
"@tempfix/watcher": "^2.3.0"
2016-09-22 14:33:44 +00:00
},
"devDependencies": {
2024-01-28 00:18:39 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.8"
2019-06-04 11:59:54 +00:00
},
"files": [
2021-11-29 19:26:59 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-04 11:59:54 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-11-29 19:26:59 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-01-28 00:18:39 +00:00
],
2024-04-14 15:24:25 +00:00
"type": "module",
"keywords": [
"file watching",
"chokidar",
"filesystem",
"observable",
"typescript",
"node.js",
"development tool",
"file system events",
"real-time",
"watch files"
]
}