2019-04-20 17:59:33 +00:00
|
|
|
{
|
|
|
|
"name": "@gitzone/tsbundle",
|
2019-08-25 14:35:22 +00:00
|
|
|
"version": "1.0.38",
|
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": {
|
2019-04-30 11:38:17 +00:00
|
|
|
"@gitzone/tsbuild": "^2.1.11",
|
2019-04-30 10:49:10 +00:00
|
|
|
"@gitzone/tsrun": "^1.2.6",
|
2019-04-20 17:59:33 +00:00
|
|
|
"@gitzone/tstest": "^1.0.15",
|
2019-08-25 14:35:22 +00:00
|
|
|
"@pushrocks/tapbundle": "^3.0.13",
|
2019-07-17 10:00:04 +00:00
|
|
|
"@types/node": "^12.6.6",
|
2019-08-25 14:35:22 +00:00
|
|
|
"tslint": "^5.19.0",
|
2019-04-20 17:59:33 +00:00
|
|
|
"tslint-config-prettier": "^1.15.0"
|
|
|
|
},
|
2019-04-29 20:11:24 +00:00
|
|
|
"dependencies": {
|
2019-04-30 10:49:10 +00:00
|
|
|
"@babel/core": "^7.4.4",
|
2019-04-29 20:11:24 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.4.4",
|
2019-04-30 14:08:09 +00:00
|
|
|
"@babel/plugin-transform-runtime": "^7.4.4",
|
2019-04-30 09:37:05 +00:00
|
|
|
"@babel/preset-env": "^7.4.4",
|
2019-04-30 14:08:09 +00:00
|
|
|
"@babel/runtime": "^7.4.4",
|
2019-04-30 10:49:10 +00:00
|
|
|
"@pushrocks/early": "^3.0.3",
|
|
|
|
"@pushrocks/smartcli": "^3.0.7",
|
2019-06-16 15:47:34 +00:00
|
|
|
"@pushrocks/smartfile": "^7.0.2",
|
2019-05-06 12:00:21 +00:00
|
|
|
"@pushrocks/smartlog": "^2.0.19",
|
2019-07-17 10:00:04 +00:00
|
|
|
"@pushrocks/smartlog-destination-local": "^8.0.2",
|
2019-06-16 15:47:34 +00:00
|
|
|
"@types/html-minifier": "^3.5.3",
|
|
|
|
"html-minifier": "^4.0.0",
|
2019-04-29 20:11:24 +00:00
|
|
|
"rollup": "^1.10.1",
|
|
|
|
"rollup-plugin-babel": "^4.3.2",
|
2019-07-17 10:00:04 +00:00
|
|
|
"rollup-plugin-commonjs": "^10.0.1",
|
|
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
2019-04-29 20:11:24 +00:00
|
|
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
2019-06-16 15:02:38 +00:00
|
|
|
"rollup-plugin-terser": "^5.0.0",
|
2019-07-17 10:00:04 +00:00
|
|
|
"rollup-plugin-typescript2": "^0.22.0"
|
2019-06-16 15:02:38 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"ts/*",
|
|
|
|
"ts_web/*",
|
|
|
|
"dist/*",
|
|
|
|
"dist_web/*",
|
2019-08-25 14:35:22 +00:00
|
|
|
"dist_ts_web/*",
|
2019-06-16 15:02:38 +00:00
|
|
|
"assets/*",
|
|
|
|
"cli.js",
|
|
|
|
"npmextra.json",
|
|
|
|
"readme.md"
|
|
|
|
]
|
2019-08-25 14:35:22 +00:00
|
|
|
}
|