smartacme/package.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2016-11-01 17:27:57 +00:00
{
2023-07-10 00:41:58 +00:00
"name": "@push.rocks/smartacme",
2023-01-06 13:08:18 +00:00
"version": "4.0.3",
2018-08-12 18:58:59 +00:00
"private": false,
2019-02-06 08:47:33 +00:00
"description": "acme with an easy yet powerful interface in TypeScript",
2020-05-17 16:21:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-09-27 13:40:55 +00:00
"type": "module",
2016-11-01 17:27:57 +00:00
"scripts": {
2018-08-12 18:58:59 +00:00
"test": "(tstest test/)",
2022-09-27 13:44:06 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2016-11-01 17:27:57 +00:00
},
"repository": {
"type": "git",
2017-04-28 16:59:43 +00:00
"url": "git+ssh://git@gitlab.com/umbrellazone/smartacme.git"
2016-11-01 17:27:57 +00:00
},
"keywords": [
"TypeScript",
"acme",
"letsencrypt"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2017-04-28 16:59:43 +00:00
"url": "https://gitlab.com/umbrellazone/smartacme/issues"
2016-11-01 17:27:57 +00:00
},
2017-04-28 16:59:43 +00:00
"homepage": "https://gitlab.com/umbrellazone/smartacme#README",
2016-11-01 17:27:57 +00:00
"dependencies": {
2022-09-27 13:40:55 +00:00
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartdata": "^5.0.8",
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartdns": "^5.0.2",
"@pushrocks/smartexpress": "^4.0.21",
"@pushrocks/smartlog": "^3.0.1",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrequest": "^2.0.11",
"@pushrocks/smartstring": "^4.0.5",
2023-01-06 13:08:18 +00:00
"@pushrocks/smarttime": "^4.0.0",
2020-08-12 16:36:06 +00:00
"@pushrocks/smartunique": "^3.0.3",
2022-09-27 13:40:55 +00:00
"@tsclass/tsclass": "^4.0.21",
"acme-client": "^4.2.5"
2016-11-01 17:27:57 +00:00
},
"devDependencies": {
2022-09-27 13:40:55 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.73",
2022-09-27 17:55:38 +00:00
"@mojoio/cloudflare": "^6.0.1",
2022-09-27 13:40:55 +00:00
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.7.23"
2020-02-10 11:15:47 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-17 16:21:25 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-10 11:15:47 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-12 16:36:06 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-02-10 11:15:47 +00:00
]
2023-07-10 00:41:58 +00:00
}