smartsystem/package.json

59 lines
1.4 KiB
JSON
Raw Normal View History

2016-10-06 17:28:00 +00:00
{
2019-08-22 00:14:17 +00:00
"name": "@pushrocks/smartsystem",
2022-07-28 20:07:53 +00:00
"version": "3.0.0",
2019-08-21 23:05:21 +00:00
"description": "interact with the system you are running on",
2021-08-12 21:35:39 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-28 20:07:52 +00:00
"type": "module",
2016-10-06 17:28:00 +00:00
"scripts": {
2019-08-21 23:05:21 +00:00
"test": "(tstest test/)",
2022-07-28 20:14:24 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-28 20:07:52 +00:00
"buildDocs": "tsdoc"
2016-10-06 17:28:00 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartsystem.git"
},
"keywords": [
"TypeScript",
"lazy",
"module loader"
],
2016-10-06 17:28:00 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartsystem/issues"
},
2016-10-06 21:00:29 +00:00
"homepage": "https://gitlab.com/pushrocks/smartsystem#README",
"dependencies": {
2022-07-28 20:07:52 +00:00
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartnetwork": "^3.0.0",
"@pushrocks/smartpromise": "^3.1.7",
"systeminformation": "^5.12.1"
2016-10-11 23:41:30 +00:00
},
"devDependencies": {
2022-07-28 20:07:52 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
2021-08-12 21:35:39 +00:00
"tslint": "^6.1.3",
2019-08-21 23:05:21 +00:00
"tslint-config-prettier": "^1.18.0"
},
"private": false,
"files": [
2021-08-12 21:35:39 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-21 23:05:21 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-08-12 21:35:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-21 23:05:21 +00:00
]
2022-07-28 20:07:53 +00:00
}