-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 846 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 846 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
{
"name": "@ngrey5/odbc",
"version": "2.0.0",
"description": "Wrapper for odbc package with pre-determined setup.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "github.com/ngrey5/odbc",
"homepage": "github.com/ngrey5/odbc",
"scripts": {
"start": "npm run compile-ts && node dist/index.js",
"precompile-ts": "npx rimraf lib/**/*",
"compile-ts": "npx tsc",
"prepublish-npm": "npm run compile-ts",
"publish-npm": "npm publish --access public",
"test": "jest --watch"
},
"keywords": [
"odbc"
],
"author": "Nick Grey",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.7.4"
},
"dependencies": {
"odbc": "^2.4.4"
},
"files": [
"lib/**/*"
]
}