smartcls/package.json

39 lines
870 B
JSON
Raw Normal View History

2017-10-12 09:19:54 +00:00
{
2020-07-20 07:39:47 +00:00
"name": "@pushrocks/smartcls",
2021-09-17 17:35:26 +00:00
"version": "1.0.11",
2020-07-20 07:39:47 +00:00
"description": "continuation-local-storage using native AsyncLocalStorage",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-10-12 09:19:54 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-20 07:39:47 +00:00
"test": "tstest test/",
"build": "tsbuild --web"
2017-10-12 09:19:54 +00:00
},
"devDependencies": {
2021-09-17 17:34:41 +00:00
"@gitzone/tsbuild": "^2.1.27",
"@gitzone/tsbundle": "^1.0.87",
"@gitzone/tstest": "^1.0.57",
"@pushrocks/tapbundle": "^3.2.14",
"@types/node": "^16.9.2",
"tslint": "^6.1.3",
2020-07-20 07:39:47 +00:00
"tslint-config-prettier": "^1.18.0"
2017-10-12 09:19:54 +00:00
},
2020-07-20 07:39:47 +00:00
"private": false,
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2021-09-17 17:35:26 +00:00
}