forked from Emurgo/cardano-serialization-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db65ead
commit c72821c
Showing
11 changed files
with
2,936 additions
and
663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules/ | ||
dist/ | ||
rust/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v12.18.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,44 @@ | ||
{ | ||
"name": "cardano-serialization-lib", | ||
"version": "0.0.0", | ||
"version": "0.1.0", | ||
"description": "processing Haskell Shelley testnet", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "rm -rf dist && tsc", | ||
"lint": "eslint \"src/**/*.ts\"", | ||
"test:watch": "mocha -w", | ||
"dev": "rimraf ./dist && node ./src/index.ts", | ||
"preinstall": "cd rust; wasm-pack build --target=nodejs; wasm-pack pack; cd .." | ||
"rust:build": "cd rust; wasm-pack build --target=nodejs; wasm-pack pack; cd ..", | ||
"rust:test": "cd rust; cargo test; cd ..", | ||
"js:build": "rm -rf dist && tsc", | ||
"js:dev": "rimraf ./dist && node ./src/index.ts", | ||
"js:lint": "eslint \"src/**/*.ts\"", | ||
"js:test:watch": "mocha -w", | ||
"js:test": "mocha", | ||
"js:flowgen": "npm run rust:build && flowgen ./rust/pkg/cddl_lib.d.ts -o ./rust/pkg/cddl_lib.js.flow --add-flow-header" | ||
}, | ||
"author": "", | ||
"husky": { | ||
"hooks": { | ||
"pre-push": "npm run rust:test && npm run js:lint && npm run js:test" | ||
} | ||
}, | ||
"author": "EMURGO", | ||
"license": "MIT", | ||
"dependencies": { | ||
"io-ts": "2.1.0", | ||
"cbor": "5.0.1", | ||
"io-ts": "2.2.6", | ||
"cbor": "5.0.2", | ||
"@types/cbor": "5.0.0" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "2.19.2", | ||
"@typescript-eslint/parser": "2.19.2", | ||
"eslint": "6.8.0", | ||
"@types/mocha": "7.0.1", | ||
"@types/chai": "4.2.9", | ||
"source-map-support": "0.5.16", | ||
"ts-node": "8.6.2", | ||
"mocha": "7.0.1", | ||
"typescript": "3.7.5", | ||
"rust-lib": "file:rust/pkg" | ||
"@types/chai": "4.2.11", | ||
"@types/mocha": "7.0.2", | ||
"@typescript-eslint/eslint-plugin": "3.4.0", | ||
"@typescript-eslint/parser": "3.4.0", | ||
"bip39": "3.0.2", | ||
"chai": "4.2.0", | ||
"eslint": "7.3.1", | ||
"flowgen": "1.11.0", | ||
"husky": "4.2.5", | ||
"mocha": "8.0.1", | ||
"rust-lib": "file:rust/pkg", | ||
"source-map-support": "0.5.19", | ||
"ts-node": "8.10.2", | ||
"typescript": "3.9.5" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* |
Oops, something went wrong.