tsclass/package.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2016-05-02 07:32:38 +02:00
{
2018-06-09 15:28:47 +02:00
"name": "@tsclass/tsclass",
2020-03-06 14:23:04 +00:00
"version": "3.0.12",
2018-06-09 15:11:37 +02:00
"private": false,
2016-05-02 07:32:38 +02:00
"description": "common classes for TypeScript",
2020-03-22 22:21:47 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-05-02 07:32:38 +02:00
"scripts": {
2019-10-02 11:11:22 +02:00
"test": "tstest test/",
2018-07-25 22:33:50 +02:00
"build": "tsbuild"
2016-05-02 07:32:38 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsclass/tsclass.git"
},
"keywords": [
"TypeScript",
"Classes"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsclass/tsclass/issues"
},
2017-11-09 12:13:27 +01:00
"homepage": "https://github.com/tsclass/tsclass#readme",
2019-10-02 11:11:22 +02:00
"dependencies": {
2020-03-22 22:21:47 +00:00
"@pushrocks/tapbundle": "^3.2.1"
2019-10-02 11:11:22 +02:00
},
2018-06-09 15:15:54 +02:00
"devDependencies": {
2020-03-22 22:21:47 +00:00
"@gitzone/tsbuild": "^2.1.22",
2019-08-31 12:53:59 +02:00
"@gitzone/tsrun": "^1.2.8",
2020-03-22 22:21:47 +00:00
"@gitzone/tstest": "^1.0.28",
"tslint": "^6.1.0",
2019-07-08 14:04:11 +02:00
"tslint-config-prettier": "^1.18.0"
},
"files": [
2019-10-21 17:29:10 +02:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-22 22:21:47 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-21 17:29:10 +02:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-08 14:04:11 +02:00
"cli.js",
"npmextra.json",
"readme.md"
]
2020-03-22 22:21:47 +00:00
}