qenv/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2016-06-19 15:33:54 +00:00
{
"name": "@pushrocks/qenv",
2022-07-28 08:10:40 +00:00
"version": "5.0.1",
"private": false,
2016-12-31 18:26:32 +00:00
"description": "easy promised environments",
2020-06-08 18:58:43 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-28 08:09:01 +00:00
"type": "module",
2016-06-19 15:33:54 +00:00
"scripts": {
"test": "(tstest test/)",
2022-07-28 08:10:39 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-06-19 15:33:54 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/qenv.git"
},
"keywords": [
"environment",
"git",
"ci"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/qenv/issues"
},
"homepage": "https://gitlab.com/pushrocks/qenv#README",
"devDependencies": {
2022-07-28 08:09:01 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.2",
"tslint": "^6.1.3",
2019-08-06 15:37:07 +00:00
"tslint-config-prettier": "^1.18.0"
2016-06-19 15:33:54 +00:00
},
"dependencies": {
2022-07-28 08:09:01 +00:00
"@pushrocks/smartfile": "^10.0.4",
"@pushrocks/smartlog": "^3.0.1",
"@pushrocks/smartpath": "^5.0.5"
2019-08-06 15:37:07 +00:00
},
"files": [
2020-06-08 18:58:43 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-06 15:37:07 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-07-28 08:10:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-06 15:37:07 +00:00
]
2022-07-28 08:10:40 +00:00
}