mirror of
https://github.com/mCaptcha/glue.git
synced 2026-01-25 07:47:54 +00:00
104 lines
2.9 KiB
JSON
104 lines
2.9 KiB
JSON
{
|
|
"name": "@mcaptcha/react-glue",
|
|
"version": "0.1.0-rc3",
|
|
"description": "glue code to setup mCaptcha on your React website",
|
|
"author": "Aravinth Manivannan <realaravinth@batsense.net>",
|
|
"license": "(MIT OR Apache-2.0)",
|
|
"keywords": [
|
|
"mCaptcha",
|
|
"CAPTCHA",
|
|
"proof of work",
|
|
"react"
|
|
],
|
|
"homepage": "https://mcaptcha.org",
|
|
"browser": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bugs": {
|
|
"url": "https://github.com/mCaptcha/glue/issues",
|
|
"email": "realaravinth@batsense.net"
|
|
},
|
|
"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"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mCaptcha/glue.git"
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.modern.js",
|
|
"source": "src/index.tsx",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"build": "microbundle-crl --no-compress --format modern,cjs",
|
|
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
"doc": "typedoc --tsconfig ./tsconfig.test.json src/index.tsx",
|
|
"prepare": "run-s build",
|
|
"test": "run-s test:unit test:build",
|
|
"test:build": "run-s build",
|
|
"test:lint": "eslint src/",
|
|
"test:unit": "cross-env CI=1 react-scripts test --coverage -env=jsdom",
|
|
"test:watch": "react-scripts test --env=jsdom",
|
|
"predeploy": "cd example && yarn install && yarn run build",
|
|
"deploy": "gh-pages -d example/build"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.1.4",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"@types/jest": "^29.5.6",
|
|
"@types/node": "^20.8.9",
|
|
"@types/react": "^18.2.33",
|
|
"@types/react-dom": "^18.2.14",
|
|
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.52.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-config-standard-react": "^13.0.0",
|
|
"eslint-plugin-import": "^2.29.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-standard": "^4.1.0",
|
|
"gh-pages": "^6.0.0",
|
|
"jest": "^29.7.0",
|
|
"microbundle-crl": "^0.13.11",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.0.3",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-scripts": "^5.0.1",
|
|
"typedoc": "^0.25.2",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@mcaptcha/core-glue": "0.1.0-rc1"
|
|
}
|
|
}
|