smartenv/package.json

52 lines
1.3 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",
2019-08-21 22:20:11 +00:00
"version": "4.0.7",
2015-11-26 05:31:31 +00:00
"description": "store things about your environment and let them travel across modules",
2016-02-17 20:44:40 +00:00
"main": "dist/index.js",
2016-05-01 23:30:02 +00:00
"typings": "dist/index.d.ts",
2015-11-26 05:31:31 +00:00
"scripts": {
2019-06-17 06:46:28 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)",
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": {
2019-06-17 06:46:28 +00:00
"@pushrocks/smartparam": "^1.0.4",
"@pushrocks/smartpromise": "^3.0.2",
2019-08-21 22:20:10 +00:00
"@types/node": "^12.7.2"
2015-11-26 05:31:31 +00:00
},
2016-04-05 13:53:51 +00:00
"devDependencies": {
2019-06-17 06:46:28 +00:00
"@gitzone/tsbuild": "^2.1.11",
2019-08-21 22:20:10 +00:00
"@gitzone/tsrun": "^1.2.8",
2019-06-17 06:46:28 +00:00
"@gitzone/tstest": "^1.0.24",
2019-08-21 22:20:10 +00:00
"@pushrocks/tapbundle": "^3.0.11",
"@types/npm": "^2.0.29",
2019-08-21 22:20:10 +00:00
"tslint": "^5.19.0",
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": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
2019-08-21 22:20:10 +00:00
"dist_ts_web/*",
2019-06-17 06:46:28 +00:00
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2019-08-21 22:20:11 +00:00
}