smartmatch/package.json

42 lines
932 B
JSON
Raw Normal View History

2020-02-25 18:34:29 +00:00
{
2023-07-10 08:16:30 +00:00
"name": "@push.rocks/smartmatch",
2022-08-09 16:19:05 +00:00
"version": "2.0.0",
2020-02-25 18:34:29 +00:00
"private": false,
"description": "a minimal matching library using picomatch",
2020-05-25 18:09:39 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-09 16:19:05 +00:00
"type": "module",
2020-02-25 18:34:29 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2020-05-25 18:09:39 +00:00
"build": "(tsbuild && tsbundle npm)",
2022-08-09 16:19:05 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2020-02-25 18:34:29 +00:00
},
"devDependencies": {
2022-08-09 16:19:05 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.5"
2020-02-25 18:34:29 +00:00
},
2020-02-25 19:02:52 +00:00
"dependencies": {
2022-08-09 16:19:05 +00:00
"matcher": "^5.0.0"
2020-02-25 19:02:52 +00:00
},
2020-02-25 18:34:29 +00:00
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-25 18:09:39 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-25 18:34:29 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-08-09 16:19:05 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-02-25 18:34:29 +00:00
]
2023-07-10 08:16:30 +00:00
}