Socket
Socket
Sign inDemoInstall

okuna

Package Overview
Dependencies
19
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0 to 0.1.0

dist/okuna.js

60

package.json
{
"name": "okuna",
"version": "0.0.0",
"version": "0.1.0",
"description": "Node.js API bindings for the Okuna social network.",
"repository": "https://github.com/jozsefsallai/node-okuna",
"main": "lib/Okuna.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jozsefsallai/okuna.js.git"
},
"keywords": [
"okuna",
"social",
"network",
"api"
],
"author": "@jozsefsallai",
"license": "MIT"
"license": "MIT",
"bugs": {
"url": "https://github.com/jozsefsallai/okuna.js/issues"
},
"files": [
"/dist",
"/lib"
],
"homepage": "https://github.com/jozsefsallai/okuna.js#readme",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/nock": "^10.0.3",
"@types/node": "^12.7.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.6",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"axios": "^0.19.0",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"isomorphic-form-data": "^2.0.0"
},
"scripts": {
"build": "rm -rf lib && tsc",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"docs": "typedoc",
"lint": "tslint --project .",
"prepack": "npm run build && webpack",
"prepare": "npm run build && webpack",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:cover": "nyc --reporter=lcov --reporter=text npm run test",
"watch": "npm run build -- --watch"
}
}

@@ -1,4 +0,57 @@

# Openspace API wrapper
# Okuna.js (beta)
This package is a work in progress.
[![Build Status](https://travis-ci.org/jozsefsallai/okuna.js.svg)](https://travis-ci.org/jozsefsallai/okuna.js) [![Coverage Status](https://coveralls.io/repos/github/jozsefsallai/okuna.js/badge.svg?branch=master)](https://coveralls.io/github/jozsefsallai/okuna.js?branch=master) [![npm version](https://img.shields.io/npm/v/okuna.svg?style=flat)](https://www.npmjs.com/package/okuna)
A library for Node.js and the browser to connect to the Okuna API. This library is currently in **public beta**, so errors might appear here and there. If you've stumbled upon an error, please [report it in the library's issue tracker](https://github.com/jozsefsallai/okuna.js/issues/new).
## Docs
You can read the library documentation [here](https://jozsefsallai.github.io/okuna.js/).
## Contribution
Contribution is always welcome and appreciated!
Clone the repository:
```sh
git clone git@github.com:jozsefsallai/okuna.js.git
cd okuna.js
```
Install the dependencies:
```sh
npm i -g yarn
yarn
```
To run a development build:
```
yarn watch
```
To make a single build of the files:
```
yarn build
```
To build for both Node and the browser, run:
```
yarn prepare
```
Make sure that your changes pass linting:
```
yarn lint
```
...and that your tests are okay:
```
yarn test
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc