Skip to content

Commit f44fadf

Browse files
author
zetxx
committed
first commit
0 parents  commit f44fadf

File tree

6 files changed

+54
-0
lines changed

6 files changed

+54
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules/**/*
2+
.nyc_output/**/*
3+
coverage/**/*
4+
tests/unit/runtime/ledger/**/*
5+
examples/mssql.config.js

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package-lock=false
2+
registry=https://registry.npmjs.org

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: node_js
2+
node_js:
3+
- "16"
4+
5+
script: echo "Running tests against $(node -v) ..."
6+
7+
branches:
8+
only:
9+
- master
10+
11+
jobs:
12+
include:
13+
- stage: test
14+
script: npm run unit-test
15+
- stage: release
16+
deploy:
17+
provider: script
18+
skip_cleanup: true
19+
script:
20+
- npx semantic-release

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Expose sql methods as nodejs methods
2+
3+
[![Build Status](https://travis-ci.com/zetxx/expose-sql-methods.svg?branch=master)](https://travis-ci.com/zetxx/expose-sql-methods)

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {};

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "expose-sql-methods",
3+
"author": {
4+
"email": "[email protected]",
5+
"name": "Elin Angelov",
6+
"url": "https://github.com/zetxx"
7+
},
8+
"dependencies": {
9+
"mssql": "7.2.0"
10+
},
11+
"devDependencies": {
12+
"tap": "*",
13+
"semantic-release": "^17.0.1"
14+
},
15+
"scripts": {
16+
"unit-test": "./node_modules/tap/bin/run.js --no-cov ./tests/unit/"
17+
},
18+
"homepage": "https://github.com/zetxx/expose-sql-methods/blob/master/README.md",
19+
"repository": {
20+
"type": "git",
21+
"url": "https://github.com/zetxx/expose-sql-methods.git"
22+
}
23+
}

0 commit comments

Comments
 (0)