29 lines
727 B
JSON
29 lines
727 B
JSON
{
|
|
"name": "@rondo.dev/captcha",
|
|
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/captcha",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "tslint --project .",
|
|
"compile": "tsc",
|
|
"clean": "rm -rf lib/"
|
|
},
|
|
"dependencies": {
|
|
"@rondo.dev/logger": "file:../logger",
|
|
"express": "^4.17.1",
|
|
"http-errors": "^1.7.3",
|
|
"svg-captcha": "^1.4.0"
|
|
},
|
|
"main": "lib/index.js",
|
|
"module": "esm/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"devDependencies": {
|
|
"@rondo.dev/test-utils": "file:../test-utils",
|
|
"body-parser": "^1.19.0",
|
|
"cookie-parser": "^1.4.4",
|
|
"express-session": "^1.17.0",
|
|
"supertest": "^4.0.2"
|
|
}
|
|
}
|