Files
js-iden3-core/package.json
2022-12-14 15:46:36 +01:00

77 lines
2.1 KiB
JSON

{
"name": "@iden3/js-iden3-core",
"version": "0.0.1",
"description": "Low level API to create and manipulate iden3 Claims.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"source": "./src/index.ts",
"esm:esbuild": "dist/esm_esbuild/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"config",
"scripts",
"src",
"tsconfig.json"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:esm && npm run build:umd && npm run build:esm:esbuild && npm run build:tsc",
"build:esm:esbuild": "node ./scripts/esm.config.js",
"build:esm": "tsc -p config/tsconfig.esm.json",
"build:umd": "node ./scripts/umd.config.js",
"build:tsc": "tsc --module commonjs",
"test:coverage": "jest --coverage",
"test": "jest",
"tsc": "tsc",
"test:watch": "jest --watch",
"semantic-release": "semantic-release",
"lint": "eslint --fix --ext .js,.ts src/**",
"format": "prettier --config .prettierrc './**/*.ts' --write",
"prepare": "npm run build"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/iden3/js-iden3-core.git"
},
"keywords": [
"iden3"
],
"author": "Iden3 Core team",
"license": "MIT",
"bugs": {
"url": "https://github.com/iden3/js-iden3-core/issues"
},
"homepage": "https://github.com/iden3/js-iden3-core#readme",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"esbuild": "^0.15.15",
"esbuild-node-externals": "^1.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@iden3/js-crypto": "git@github.com:iden3/js-crypto.git",
"base58-js": "^1.0.4",
"cross-sha256": "^1.2.0"
}
}