smartexpect/package.json

47 lines
1.0 KiB
JSON
Raw Normal View History

2022-01-20 21:40:38 +00:00
{
2023-07-10 00:49:04 +00:00
"name": "@push.rocks/smartexpect",
2023-08-11 16:12:04 +00:00
"version": "1.0.18",
2022-01-20 21:40:38 +00:00
"private": false,
"description": "manage expectations in code",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-24 10:45:29 +00:00
"type": "module",
2022-01-20 21:40:38 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-07-24 10:45:29 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2022-01-20 21:40:38 +00:00
},
"devDependencies": {
2023-06-22 09:57:29 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^20.3.1",
2022-01-20 21:40:38 +00:00
"tslint": "^6.1.3",
2023-06-22 09:57:29 +00:00
"tslint-config-prettier": "^1.18.0"
2022-01-20 21:40:38 +00:00
},
2022-01-21 02:33:24 +00:00
"dependencies": {
2023-06-22 09:57:29 +00:00
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartpromise": "^4.0.2",
2022-01-21 16:37:30 +00:00
"fast-deep-equal": "^3.1.3"
2022-01-21 02:33:24 +00:00
},
2022-01-20 21:40:38 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2023-08-11 16:08:51 +00:00
}