tsbundle/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2019-04-20 17:59:33 +00:00
{
"name": "@gitzone/tsbundle",
2020-08-12 16:32:17 +00:00
"version": "1.0.77",
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": {
2019-06-16 15:02:38 +00:00
"test": "cd test && node ../cli.ts.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": {
2020-08-12 15:51:11 +00:00
"@gitzone/tsbuild": "^2.1.25",
2020-07-07 18:55:17 +00:00
"@gitzone/tsrun": "^1.2.12",
2020-08-10 21:10:19 +00:00
"@gitzone/tstest": "^1.0.43",
"@pushrocks/tapbundle": "^3.2.9",
"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": {
2020-08-10 21:10:19 +00:00
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
2020-08-12 15:51:11 +00:00
"@pushrocks/early": "^3.0.6",
2020-07-07 18:55:17 +00:00
"@pushrocks/smartcli": "^3.0.12",
2020-08-10 21:10:19 +00:00
"@pushrocks/smartfile": "^8.0.0",
"@pushrocks/smartlog": "^2.0.36",
2020-07-07 18:55:17 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.8",
2020-08-10 21:10:19 +00:00
"@pushrocks/smartparcel": "^1.0.5",
2020-08-12 15:51:11 +00:00
"@rollup/plugin-commonjs": "^14.0.0",
2020-08-10 21:10:19 +00:00
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
2020-08-12 15:51:11 +00:00
"@rollup/plugin-typescript": "^5.0.2",
"@types/html-minifier": "^4.0.0",
2020-08-10 21:10:19 +00:00
"@types/node": "^14.0.27",
2019-06-16 15:47:34 +00:00
"html-minifier": "^4.0.0",
2020-08-10 21:10:19 +00:00
"rollup": "^2.23.1",
2020-03-13 14:53:15 +00:00
"rollup-plugin-babel": "^4.4.0",
2020-05-25 17:01:43 +00:00
"rollup-plugin-sourcemaps": "^0.6.2",
2020-08-12 15:51:11 +00:00
"rollup-plugin-terser": "^7.0.0",
"terser": "^5.0.0",
2020-08-10 21:10:19 +00:00
"typescript": "^3.9.7"
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
}