pow_sha256-polyfill/package.json

74 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2021-06-27 21:31:09 +05:30
{
"author": "Aravinth Manivannan <realaravinth@batsense.net>",
2021-12-08 14:28:38 +05:30
"name": "@mcaptcha/pow_sha256-polyfill",
2023-10-29 03:45:29 +05:30
"version": "0.1.0-rc2",
2021-06-27 21:31:09 +05:30
"license": "(MIT OR Apache-2.0)",
2023-10-28 18:02:11 +05:30
"keywords": [
"mCaptcha",
"CAPTCHA",
"proof of work"
],
2021-12-08 14:28:38 +05:30
"browser": "dist/index.js",
"types": "dist/index.d.ts",
2023-10-28 18:02:11 +05:30
"files": [
"dist"
],
2021-06-27 21:31:09 +05:30
"homepage": "https://mcaptcha.org",
"bugs": {
"url": "https://github.com/mCaptcha/pow_sha256-polyfill/issues",
"email": "realaravinth@batsense.net"
},
"repository": {
"type": "git",
"url": "https://github.com/mCaptcha/pow_sha256-polyfill.git"
},
2021-12-08 14:28:38 +05:30
"funding": [
{
"type": "individual",
"url": "http://mcaptcha.org/donate"
},
{
"type": "liberapay",
"url": "https://liberapay.com/mcaptcha"
},
{
"type": "individual",
"url": "http://batsense.net/donate"
},
{
"type": "liberapay",
"url": "https://liberapay.com/realaravinth"
}
],
2021-06-27 21:31:09 +05:30
"scripts": {
"build": "webpack --mode production",
2021-12-07 18:59:11 +05:30
"doc": "yarn typedoc src/index.ts",
"lint": "yarn run eslint src",
2021-06-27 21:31:09 +05:30
"start": "rimraf dist pkg && webpack-dev-server --open -d",
2021-12-07 18:59:11 +05:30
"test": "yarn jest"
2021-06-27 21:31:09 +05:30
},
"devDependencies": {
2023-10-28 18:02:11 +05:30
"@types/jest": "^29.5.6",
"@types/jsdom": "^21.1.4",
"@types/node": "^20.8.9",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"copy-webpack-plugin": "^12.0.0",
2021-06-27 21:31:09 +05:30
"dart-sass": "^1.25.0",
2023-10-28 18:02:11 +05:30
"eslint": "^8.52.0",
"jest": "^29.7.0",
"jsdom": "^25.0.0",
"rimraf": "^6.0.0",
"sinon": "^19.0.0",
2023-10-28 18:02:11 +05:30
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.26.0",
2023-10-28 18:02:11 +05:30
"typescript": "^5.2.2",
"webpack": "^5.89.0",
2023-10-29 03:45:29 +05:30
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.0"
2021-06-27 21:31:09 +05:30
}
}