-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 983 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 983 Bytes
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
{
"name": "botyo-api",
"version": "2.0.1",
"description": "Botyo API",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prebuild": "rimraf build/",
"build": "tsc -p .",
"docs": "typedoc --out docs/ --mode file --name \"Botyo API Documentation\" --gaID UA-38096478-8",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivkos/botyo-api.git"
},
"author": {
"name": "Ivaylo Stoyanov",
"email": "me@ivkos.com",
"url": "https://github.com/ivkos"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ivkos/botyo-api/issues"
},
"homepage": "https://github.com/ivkos/botyo-api#readme",
"dependencies": {
"@types/mongodb": "^2.2.20",
"@types/winston": "^2.3.9"
},
"devDependencies": {
"glob": "^7.1.2",
"rimraf": "^2.6.2",
"typedoc": "^0.11.1",
"typescript": "^2.9.1"
},
"engines": {
"node": ">=8.3.0"
}
}