websetup/package.json

43 lines
986 B
JSON
Raw Normal View History

2018-12-27 23:23:13 +00:00
{
"name": "@pushrocks/websetup",
2020-03-13 11:46:21 +00:00
"version": "2.0.13",
2018-12-27 23:23:13 +00:00
"private": false,
"description": "setup basic page properties",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2020-03-08 15:14:24 +00:00
"build": "(tsbuild --web && npm run bundle)",
"format": "(gitzone format)",
"bundle": "tsbundle --production --from ./ts/index.ts --to ./dist_bundle/bundle.js"
2018-12-27 23:23:13 +00:00
},
2019-03-27 13:38:24 +00:00
"keywords": [
"lossless",
"websafe"
],
2018-12-27 23:23:13 +00:00
"devDependencies": {
2020-03-06 09:57:31 +00:00
"@gitzone/tsbuild": "^2.1.17",
2020-03-08 15:14:24 +00:00
"@gitzone/tsbundle": "^1.0.50",
2020-03-06 09:57:31 +00:00
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.2.0",
"tslint": "^6.0.0",
2018-12-27 23:23:13 +00:00
"tslint-config-prettier": "^1.15.0"
},
2020-03-06 15:12:23 +00:00
"dependencies": {
"@tsclass/tsclass": "^3.0.12"
},
2019-07-16 16:54:19 +00:00
"files": [
2020-03-06 09:57:31 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-16 16:54:19 +00:00
"cli.js",
"npmextra.json",
"readme.md"
]
2020-03-06 09:57:32 +00:00
}