Skip to content

Commit

Permalink
Implement bufferring utilities and basic protocol layout
Browse files Browse the repository at this point in the history
  • Loading branch information
1st1 committed Apr 26, 2019
1 parent a227169 commit 475a7d7
Show file tree
Hide file tree
Showing 15 changed files with 4,777 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
trim_trailing_whitespace = true
insert_final_newline = true

[*.{js,ts}]
indent_size = 2
indent_style = space
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/dist
/node_modules

5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: ["./dist"],
};
21 changes: 19 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
{
"name": "edgedb",
"version": "0.5.0-alpha",
"description": "A JavaScript binding for EdgeDB",
"author": "EdgeDB <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/edgedb/edgedb-js.git"
},
"license": "MIT"
"version": "0.5.0-alpha",
"main": "./dist/src/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"files": [
"/dist",
"/src"
],
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.5",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3"
},
"scripts": {
"build": "tsc",
"test": "jest"
}
}
Loading

0 comments on commit 475a7d7

Please sign in to comment.