smartparcel/package.json

42 lines
902 B
JSON
Raw Normal View History

2020-07-07 18:25:45 +00:00
{
"name": "@pushrocks/smartparcel",
2022-03-10 14:52:16 +00:00
"version": "1.0.12",
2020-07-07 18:25:45 +00:00
"private": false,
"description": "a wrapper for parcel",
"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": {
"@pushrocks/smartpath": "^4.0.3",
2022-03-10 14:13:49 +00:00
"@parcel/core": "^2.3.2"
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"
2020-07-07 18:25:45 +00:00
]
2021-03-07 23:31:32 +00:00
}