-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 848 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
{
"name": "@antonovicha/hdbext-async",
"version": "1.0.8",
"description": "Async wrapper for @sap/hdbext.",
"author": "aleksei antonovich",
"keywords": [
"hana",
"sap",
"node",
"nodejs",
"database"
],
"license": "mit",
"repository": {
"type": "git",
"url": "git+https://github.com/antonovicha/hdbext-async.git"
},
"bugs": {
"url": "https://github.com/antonovicha/hdbext-async/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist/"
],
"scripts": {
"lint": "tslint *.ts",
"clean": "rm -fr ./dist/*",
"build": "npm run clean && tsc && cp -r ./@types ./dist",
"prepublishOnly": "npm run lint"
},
"devDependencies": {
"@types/node": "^8.10.30",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
}