smartdns/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2016-11-15 20:39:21 +00:00
{
"name": "@pushrocks/smartdns",
2022-07-27 07:00:00 +00:00
"version": "5.0.0",
2019-01-06 23:21:15 +00:00
"private": false,
2016-11-15 20:39:21 +00:00
"description": "smart dns methods written in TypeScript",
2020-08-05 15:37:51 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-11-15 20:39:21 +00:00
"scripts": {
2019-01-06 23:21:15 +00:00
"test": "(tstest test/)",
2022-07-27 07:15:28 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-27 06:59:29 +00:00
"buildDocs": "tsdoc"
2016-11-15 20:39:21 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/dnsly.git"
},
"keywords": [
"dns",
"google dns",
"dns record"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/dnsly/issues"
},
"homepage": "https://gitlab.com/pushrocks/dnsly#README",
"dependencies": {
2022-07-27 06:59:29 +00:00
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrequest": "^1.1.56",
"@tsclass/tsclass": "^4.0.17",
"dns2": "^2.0.5"
2016-11-15 20:39:21 +00:00
},
2017-07-31 14:33:57 +00:00
"devDependencies": {
2022-07-27 06:59:29 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.1",
2020-08-05 15:37:51 +00:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-05 15:37:51 +00:00
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-05 15:37:51 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-07-27 06:59:29 +00:00
],
"type": "module"
2021-08-24 09:40:44 +00:00
}