tsbundle/package.json

62 lines
1.7 KiB
JSON
Raw Normal View History

2019-04-20 17:59:33 +00:00
{
"name": "@gitzone/tsbundle",
2020-03-14 22:40:10 +00:00
"version": "1.0.56",
2019-04-20 17:59:33 +00:00
"private": false,
"description": "a bundler using rollup for painless bundling of web projects",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2019-06-16 15:02:38 +00:00
"test": "cd test && node ../cli.ts.js --production",
2019-04-20 17:59:33 +00:00
"build": "(tsbuild)",
"format": "(gitzone format)"
},
2019-04-30 10:49:10 +00:00
"bin": {
"tsbundle": "cli.js"
},
2019-04-20 17:59:33 +00:00
"devDependencies": {
2020-03-13 14:53:15 +00:00
"@gitzone/tsbuild": "^2.1.20",
2019-08-26 14:33:08 +00:00
"@gitzone/tsrun": "^1.2.8",
2019-10-05 19:25:44 +00:00
"@gitzone/tstest": "^1.0.28",
2020-03-02 09:42:44 +00:00
"@pushrocks/tapbundle": "^3.2.0",
2020-03-13 14:53:15 +00:00
"tslint": "^6.1.0",
2019-04-20 17:59:33 +00:00
"tslint-config-prettier": "^1.15.0"
},
2019-04-29 20:11:24 +00:00
"dependencies": {
2020-03-13 14:53:15 +00:00
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/runtime": "^7.8.7",
2019-04-30 10:49:10 +00:00
"@pushrocks/early": "^3.0.3",
2020-03-13 14:53:15 +00:00
"@pushrocks/smartcli": "^3.0.9",
"@pushrocks/smartfile": "^7.0.9",
2020-03-02 09:42:44 +00:00
"@pushrocks/smartlog": "^2.0.21",
2019-07-17 10:00:04 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.2",
2020-03-13 14:53:15 +00:00
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
2019-06-16 15:47:34 +00:00
"@types/html-minifier": "^3.5.3",
2020-03-13 14:53:15 +00:00
"@types/node": "^13.9.1",
2019-06-16 15:47:34 +00:00
"html-minifier": "^4.0.0",
2020-03-13 14:53:15 +00:00
"rollup": "^2.0.6",
"rollup-plugin-babel": "^4.4.0",
2020-03-02 09:42:44 +00:00
"rollup-plugin-sourcemaps": "^0.5.0",
2020-03-13 14:53:15 +00:00
"rollup-plugin-terser": "^5.3.0",
"terser": "^4.6.6"
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:25 +00:00
}