tsclass/package.json

44 lines
919 B
JSON
Raw Normal View History

2016-05-02 07:32:38 +02:00
{
2018-06-09 15:28:47 +02:00
"name": "@tsclass/tsclass",
2019-07-08 14:04:12 +02:00
"version": "2.0.1",
2018-06-09 15:11:37 +02:00
"private": false,
2016-05-02 07:32:38 +02:00
"description": "common classes for TypeScript",
"main": "dist/index.js",
2016-11-16 18:27:41 +01:00
"typings": "dist/index.d.ts",
2016-05-02 07:32:38 +02:00
"scripts": {
2018-06-19 23:25:57 +02:00
"test": "tsrun test/test.ts",
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",
2018-06-09 15:15:54 +02:00
"dependencies": {},
"devDependencies": {
2019-07-08 14:04:11 +02:00
"@gitzone/tsbuild": "^2.1.11",
"@gitzone/tsrun": "^1.2.6",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0"
},
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2019-07-08 14:04:12 +02:00
}