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-09 14:36:56 +00:00
"version": "1.0.51",
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-08-26 14:33:08 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@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",
"tslint": "^6.0.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-09 14:36:55 +00:00
"@types/node": "^13.9.0",
2019-10-05 19:25:44 +00:00
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/runtime": "^7.6.2",
2019-04-30 10:49:10 +00:00
"@pushrocks/early": "^3.0.3",
"@pushrocks/smartcli": "^3.0.7",
2020-03-02 09:42:44 +00:00
"@pushrocks/smartfile": "^7.0.8",
"@pushrocks/smartlog": "^2.0.21",
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",
2020-03-02 09:42:44 +00:00
"rollup": "^1.32.0",
2019-04-29 20:11:24 +00:00
"rollup-plugin-babel": "^4.3.2",
2019-10-05 19:25:44 +00:00
"rollup-plugin-commonjs": "^10.1.0",
2019-07-17 10:00:04 +00:00
"rollup-plugin-node-resolve": "^5.2.0",
2020-03-02 09:42:44 +00:00
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"terser": "^4.6.4"
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-26 14:32:26 +00:00
}