casper-cep18-js-client
Version:
Casper CEP-18 JavaScript Client
70 lines • 2.26 kB
JSON
{
"name": "casper-cep18-js-client",
"version": "1.0.3",
"description": "Casper CEP-18 JavaScript Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/ --max-warnings=0",
"lint:write": "eslint src/ --fix",
"test:unit": "cross-env NODE_ENV=test jest \"/tests/unit\"",
"test:e2e": "cross-env NODE_ENV=test jest -i --detectOpenHandles --forceExit \"tests/e2e\"",
"test": "npm run test:unit && npm run test:e2e",
"example:install": "ts-node examples/install.ts",
"example:usage": "ts-node examples/usage.ts",
"example:usage2": "ts-node examples/usage2.ts",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"generate:wasm": "ts-node \"src/scripts/copy-and-convert-wasms.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/casper-ecosystem/cep18.git"
},
"keywords": [
"casper",
"cep18",
"fungible token"
],
"author": "Ryo Kanazawa <ryo@casperlabs.io>",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/casper-ecosystem/cep18/issues"
},
"homepage": "https://github.com/casper-ecosystem/cep18/tree/master/client-js#readme",
"files": [
"/dist"
],
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@noble/hashes": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"casper-js-sdk": "^2.15.4",
"@make-software/ces-js-parser": "^1.3.3"
}
}