cloudflare/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2016-04-10 16:22:58 +00:00
{
"name": "@mojoio/cloudflare",
2022-09-27 17:24:52 +00:00
"version": "6.0.1",
"private": false,
2017-01-29 17:22:17 +00:00
"description": "easy cloudflare management",
2020-06-10 05:15:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-09-27 17:23:20 +00:00
"type": "module",
2016-04-10 16:22:58 +00:00
"scripts": {
"test": "(tstest test/)",
2022-09-27 17:24:52 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-04-10 16:22:58 +00:00
},
"repository": {
"type": "git",
2017-01-29 17:22:17 +00:00
"url": "git+https://gitlab.com/pushrocks/cflare.git"
2016-04-10 16:22:58 +00:00
},
"keywords": [
2017-01-29 17:22:17 +00:00
"Push.Rocks",
2016-04-10 16:22:58 +00:00
"cloudflare"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2017-01-29 17:22:17 +00:00
"url": "https://gitlab.com/pushrocks/cflare/issues"
2016-04-10 16:22:58 +00:00
},
2017-01-29 17:22:17 +00:00
"homepage": "https://gitlab.com/pushrocks/cflare#readme",
2016-04-27 00:20:27 +00:00
"dependencies": {
2021-01-22 20:45:35 +00:00
"@pushrocks/smartdelay": "^2.0.10",
2022-09-27 17:23:20 +00:00
"@pushrocks/smartlog": "^3.0.1",
2021-01-22 20:45:35 +00:00
"@pushrocks/smartpromise": "^3.1.3",
2022-09-27 17:23:20 +00:00
"@pushrocks/smartrequest": "^2.0.11",
"@pushrocks/smartstring": "^4.0.5",
"@tsclass/tsclass": "^4.0.21"
2016-04-27 00:20:27 +00:00
},
"devDependencies": {
2022-09-27 17:23:20 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.7.23"
2019-07-18 09:51:56 +00:00
},
"files": [
2020-02-09 17:36:29 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-10 05:34:47 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-09 17:36:29 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-18 09:51:56 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-01-22 20:46:26 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-07-18 09:51:56 +00:00
]
2022-09-27 17:24:52 +00:00
}