webrequest/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2018-11-30 16:12:48 +00:00
{
"name": "@pushrocks/webrequest",
2022-02-10 17:45:22 +00:00
"version": "2.0.15",
2018-11-30 16:12:48 +00:00
"private": false,
"description": "securely request from browsers",
2020-06-25 22:45:19 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-11-30 16:12:48 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2018-12-06 00:02:35 +00:00
"test": "(tstest test/ --web)",
2020-06-25 23:34:59 +00:00
"build": "(tsbuild --web && tsbundle npm)",
2018-11-30 16:12:48 +00:00
"format": "(gitzone format)"
},
"devDependencies": {
2022-02-10 17:02:07 +00:00
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tsbundle": "^1.0.89",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/smartexpress": "^3.0.108",
"@pushrocks/tapbundle": "^4.0.3",
"@types/node": "^17.0.17",
2020-10-09 10:14:45 +00:00
"tslint": "^6.1.3",
2019-06-04 13:23:47 +00:00
"tslint-config-prettier": "^1.18.0"
2018-11-30 16:12:48 +00:00
},
"dependencies": {
2022-02-10 17:02:07 +00:00
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartenv": "^4.0.16",
"@pushrocks/smartjson": "^4.0.6",
2020-10-09 10:14:45 +00:00
"node-fetch": "^2.6.1"
},
"files": [
2020-06-25 22:45:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-07-08 02:15:14 +00:00
],
"browserslist": [
"last 1 chrome versions"
]
2022-02-10 17:45:22 +00:00
}