-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1012 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "ts-data-layer-model",
"version": "1.0.5",
"description": "Models to help you organize your data layer.",
"repository": "[email protected]:samuil4/ts-data-layer-model.git",
"author": {
"name": "Samuil Gospodinov",
"email": "[email protected]",
"url": "https://github.com/samuil4/"
},
"license": "MIT",
"private": false,
"dependencies": {
"ts-node": "^7.0.0"
},
"keywords": [
"type script",
"type-script",
"model",
"data",
"data-model"
],
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"typescript": "^2.9.2",
"typings": "^2.1.1"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register test/test.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/samuil4/ts-data-layer-model/issues"
},
"homepage": "https://github.com/samuil4/ts-data-layer-model/blob/master/README.md"
}