smartenv/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2015-11-26 05:31:31 +00:00
{
2019-06-17 06:46:28 +00:00
"name": "@pushrocks/smartenv",
2020-10-13 20:09:15 +00:00
"version": "4.0.16",
2015-11-26 05:31:31 +00:00
"description": "store things about your environment and let them travel across modules",
2020-06-25 22:23:10 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2015-11-26 05:31:31 +00:00
"scripts": {
2019-06-17 06:46:28 +00:00
"test": "(tstest test/ --web)",
2020-06-25 22:23:10 +00:00
"build": "(tsbuild --web && tsbundle npm)",
2016-02-17 20:44:40 +00:00
"testbrowser": "(npm test) && (node testbrowser.js)"
2015-11-26 05:31:31 +00:00
},
"repository": {
"type": "git",
2016-11-21 13:51:35 +00:00
"url": "https://gitlab.com/pushrocks/smartenv.git"
2015-11-26 05:31:31 +00:00
},
"keywords": [
"environment"
],
2017-04-20 22:04:28 +00:00
"author": "Lossless GmbH <hello@lossless.support> (https://lossless.com)",
2015-11-26 05:31:31 +00:00
"license": "MIT",
"bugs": {
2016-11-21 13:51:35 +00:00
"url": "https://gitlab.com/pushrocks/smartenv/issues"
2015-11-26 05:31:31 +00:00
},
2016-11-21 13:51:35 +00:00
"homepage": "https://gitlab.com/pushrocks/smartenv",
2015-11-26 05:31:31 +00:00
"dependencies": {
2020-06-25 22:23:10 +00:00
"@pushrocks/smartpromise": "^3.0.6",
2020-09-29 10:23:07 +00:00
"@types/node": "^14.11.2"
2015-11-26 05:31:31 +00:00
},
2016-04-05 13:53:51 +00:00
"devDependencies": {
2020-09-29 10:23:07 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^1.0.78",
2020-06-25 22:23:10 +00:00
"@gitzone/tsrun": "^1.2.12",
2020-09-29 19:29:50 +00:00
"@gitzone/tstest": "^1.0.48",
2020-09-29 10:23:07 +00:00
"@pushrocks/tapbundle": "^3.2.9",
2020-06-25 22:23:10 +00:00
"@types/npm": "^2.0.31",
2020-09-29 10:23:07 +00:00
"tslint": "^6.1.3",
2019-06-17 06:46:28 +00:00
"tslint-config-prettier": "^1.18.0"
},
2019-06-17 06:51:03 +00:00
"private": false,
2019-06-17 06:46:28 +00:00
"files": [
2020-06-25 22:23:10 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-17 06:46:28 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-29 10:23:07 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-06-17 06:46:28 +00:00
]
2020-06-25 22:23:10 +00:00
}