smartsourcemap/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2019-06-05 11:55:01 +00:00
{
2024-03-30 20:48:43 +00:00
"name": "@push.rocks/smartsourcemap",
2020-09-28 13:35:40 +00:00
"version": "1.0.6",
2019-06-05 11:55:01 +00:00
"private": false,
2024-04-14 16:21:14 +00:00
"description": "Enables sourcemap support in Node.js projects for improved debugging.",
2020-09-28 13:30:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2019-06-05 11:55:01 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-09-28 13:30:33 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
2019-06-05 11:55:01 +00:00
},
"devDependencies": {
2020-09-28 13:30:33 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.11.2",
"tslint": "^6.1.3",
2019-06-05 11:55:01 +00:00
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
2020-09-28 13:30:33 +00:00
"@types/source-map-support": "^0.5.3",
"source-map-support": "^0.5.19"
2019-06-05 11:55:01 +00:00
},
"files": [
2020-09-28 13:30:33 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-05 11:55:01 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-28 13:30:33 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:21:14 +00:00
],
"keywords": [
"sourcemap",
"debugging",
"nodejs",
"typescript",
"source-map-support",
"development tools"
2024-05-29 12:16:22 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartsourcemap",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartsourcemap.git"
}
2024-03-30 20:48:43 +00:00
}