smartparcel/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2020-07-07 18:25:45 +00:00
{
2023-07-10 08:17:13 +00:00
"name": "@push.rocks/smartparcel",
2022-03-10 15:17:34 +00:00
"version": "1.0.13",
2020-07-07 18:25:45 +00:00
"private": false,
2024-04-14 16:07:00 +00:00
"description": "A wrapper for Parcel to simplify its usage in Node.js projects.",
2020-07-07 18:25:45 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
},
"devDependencies": {
2022-03-10 13:20:19 +00:00
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tstest": "^1.0.64",
"@pushrocks/tapbundle": "^4.0.8",
"@types/node": "^17.0.21",
2021-03-07 23:25:59 +00:00
"tslint": "^6.1.3",
2020-07-07 18:25:45 +00:00
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2022-03-10 15:17:33 +00:00
"@parcel/config-default": "^2.3.2",
"@parcel/core": "^2.3.2",
"@pushrocks/smartpath": "^4.0.3"
2020-07-07 18:25:45 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-03-07 23:31:32 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:07:00 +00:00
],
"keywords": [
"parcel",
"wrapper",
"typescript",
"build tool",
"package bundling",
"web development",
"node.js"
2024-05-29 12:15:16 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartparcel",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartparcel.git"
}
2023-07-10 08:17:13 +00:00
}