-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 982 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
{
"name": "airship-server",
"version": "1.0.7",
"description": "Airship is a framework for Node.JS & TypeScript that helps you to write big, scalable and maintainable API servers.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --p ./tsconfig.json",
"prepublishOnly": "./node_modules/.bin/tsc --p ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Naltox/airship"
},
"bugs": {
"url": "https://github.com/Naltox/airship"
},
"homepage": "https://github.com/Naltox/airship",
"bin": {
"aschemegen": "./bin/aschemegen",
"asdkgen": "./bin/asdkgen",
"asdocgen": "./bin/asdocgen"
},
"author": "Narek Abovyan <xeroxaltox@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.47",
"typescript": "^2.7.1",
"typings": "^2.1.0"
},
"dependencies": {
"diet": "^0.10.8",
"reflect-metadata": "^0.1.9"
}
}