-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 912 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
42
43
{
"name": "type-arango",
"version": "2.0.3",
"description": "ArangoDB Foxx decorators and utilities for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jsnext:main": "src/index.ts",
"scripts": {
"start": "tsc -w",
"build": "rm -rf ./dist && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/RienNeVaPlus/type-arango.git"
},
"ntl": {
"runner": "yarn"
},
"keywords": [
"ArangoDB",
"Foxx",
"TypeScript",
"Decorators",
"Types",
"ORM",
"Routes",
"Relations",
"Microservices",
"ReST",
"Entity"
],
"author": "RienNeVaPlus <?@rienneva.plus>",
"license": "MIT",
"dependencies": {
"@types/arangodb": "^3.5.0",
"@types/joi": "^14.3.2",
"@types/node": "^11.11.7",
"joi": "^14.3.1",
"reflect-metadata": "^0.1.13",
"typescript": "^3.7.4"
},
"devDependencies": {}
}