smartexpect/package.json

46 lines
1.0 KiB
JSON
Raw Normal View History

2022-01-20 21:40:38 +00:00
{
"name": "@pushrocks/smartexpect",
2022-07-24 10:45:29 +00:00
"version": "1.0.14",
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": {
2022-07-24 10:45:29 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.5",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.0.6",
2022-01-20 21:40:38 +00:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
2022-01-21 02:33:24 +00:00
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
2022-07-24 10:45:29 +00:00
"@pushrocks/smartpromise": "^3.1.7",
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"
]
2022-07-24 10:45:29 +00:00
}