pow_sha256-polyfill/package.json

70 lines
1.8 KiB
JSON
Raw 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",
"version": "0.1.0-alpha-1",
2021-06-27 21:31:09 +05:30
"license": "(MIT OR Apache-2.0)",
2021-12-08 14:28:38 +05:30
"keywords": ["mCaptcha", "CAPTCHA", "proof of work"],
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"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": {
2021-10-13 22:51:13 +05:30
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/node": "^16.10.6",
"@types/sinon": "^10.0.4",
2021-12-07 18:59:11 +05:30
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
2021-10-13 22:51:13 +05:30
"copy-webpack-plugin": "^9.0.1",
2021-06-27 21:31:09 +05:30
"dart-sass": "^1.25.0",
2021-12-07 18:59:11 +05:30
"eslint": "^8.4.1",
2021-10-13 22:51:13 +05:30
"jest": "^27.2.5",
"jsdom": "^18.0.0",
2021-06-27 21:31:09 +05:30
"rimraf": "^3.0.0",
2021-10-13 22:51:13 +05:30
"sinon": "^11.1.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
2021-12-07 15:35:10 +05:30
"typedoc": "^0.22.10",
2021-10-13 22:51:13 +05:30
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
2021-06-27 21:31:09 +05:30
}
}