tsbundle/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

2019-04-20 17:59:33 +00:00
{
"name": "@gitzone/tsbundle",
2022-01-24 03:35:53 +00:00
"version": "1.0.89",
2019-04-20 17:59:33 +00:00
"private": false,
"description": "a bundler using rollup for painless bundling of web projects",
2020-03-18 16:39:39 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2019-04-20 17:59:33 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-07-23 13:45:23 +00:00
"test": "npm run build && (tstest test/) && (cd test && node ../cli.js --production)",
2020-07-07 19:11:18 +00:00
"build": "(tsbuild --web)"
2019-04-20 17:59:33 +00:00
},
2019-04-30 10:49:10 +00:00
"bin": {
"tsbundle": "cli.js"
},
2019-04-20 17:59:33 +00:00
"devDependencies": {
2022-01-24 03:35:52 +00:00
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tsrun": "^1.2.18",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^4.0.0",
2020-08-10 21:10:19 +00:00
"tslint": "^6.1.3",
2019-04-20 17:59:33 +00:00
"tslint-config-prettier": "^1.15.0"
},
2019-04-29 20:11:24 +00:00
"dependencies": {
2022-01-24 03:35:52 +00:00
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.16.7",
2020-08-12 15:51:11 +00:00
"@pushrocks/early": "^3.0.6",
2021-07-22 20:29:52 +00:00
"@pushrocks/smartcli": "^3.0.14",
2022-01-24 03:35:52 +00:00
"@pushrocks/smartfile": "^9.0.5",
2021-07-22 20:29:52 +00:00
"@pushrocks/smartlog": "^2.0.44",
2020-07-07 18:55:17 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.8",
2021-03-08 00:43:15 +00:00
"@pushrocks/smartparcel": "^1.0.9",
2021-07-23 13:45:23 +00:00
"@pushrocks/smartpromise": "^3.1.6",
"@pushrocks/smartspawn": "^2.0.9",
2022-01-24 03:35:52 +00:00
"@rollup/plugin-commonjs": "^21.0.1",
2020-08-10 21:10:19 +00:00
"@rollup/plugin-json": "^4.1.0",
2022-01-24 03:35:52 +00:00
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/html-minifier": "^4.0.2",
"@types/node": "^17.0.10",
2019-06-16 15:47:34 +00:00
"html-minifier": "^4.0.0",
2022-01-24 03:35:52 +00:00
"rollup": "^2.66.0",
2020-03-13 14:53:15 +00:00
"rollup-plugin-babel": "^4.4.0",
2021-07-22 20:29:52 +00:00
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
2022-01-24 03:35:52 +00:00
"typescript": "^4.5.5"
2019-06-16 15:02:38 +00:00
},
"files": [
2020-03-14 22:41:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-16 15:02:38 +00:00
"cli.js",
"npmextra.json",
"readme.md"
]
2020-03-14 22:41:26 +00:00
}