-
- Downloads
There was a problem fetching the pipeline summary.
Merge branch '2-add-basics-methods-with-neon' into 'master'
Showing
- .gitignore 6 additions, 0 deletions.gitignore
- .gitlab-ci.yml 20 additions, 0 deletions.gitlab-ci.yml
- lib/index.js 140 additions, 0 deletionslib/index.js
- native/Cargo.lock 408 additions, 0 deletionsnative/Cargo.lock
- native/Cargo.toml 18 additions, 0 deletionsnative/Cargo.toml
- native/build.rs 7 additions, 0 deletionsnative/build.rs
- native/src/lib.rs 444 additions, 0 deletionsnative/src/lib.rs
- package-lock.json 989 additions, 0 deletionspackage-lock.json
- package.json 28 additions, 0 deletionspackage.json
- tests/g1_genesis.bin 0 additions, 0 deletionstests/g1_genesis.bin
- tests/test.js 515 additions, 0 deletionstests/test.js
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
lib/index.js
0 → 100644
native/Cargo.lock
0 → 100644
native/Cargo.toml
0 → 100644
native/build.rs
0 → 100644
native/src/lib.rs
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "wotb-rs", | ||
"version": "0.1.0", | ||
"description": "Makes Web of Trust computations for the Duniter project.", | ||
"main": "lib/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://git.duniter.org/nodes/typescript/wotb-rs" | ||
}, | ||
"author": "librelois <elois@ifee.fr>", | ||
"license": "AGPL-3.0", | ||
"engines": { | ||
"node": ">=9.4.0", | ||
"npm": ">=5.6.0" | ||
}, | ||
"dependencies": { | ||
"neon-cli": "^0.1.22" | ||
}, | ||
"devDependencies": { | ||
"aws-sdk": "2.2.43", | ||
"mocha": "2.2.5", | ||
"should": "8.1.1" | ||
}, | ||
"scripts": { | ||
"test": "node \"node_modules/mocha/bin/mocha\" tests/", | ||
"install": "neon build" | ||
} | ||
} |
tests/g1_genesis.bin
0 → 100644
File added
tests/test.js
0 → 100644
This diff is collapsed.
Please register or sign in to comment