-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"author": "Aravinth Manivannan <realaravinth@batsense.net>",
"name": "@mcaptcha/pow_sha256-polyfill",
"version": "0.1.0-rc2",
"license": "(MIT OR Apache-2.0)",
"keywords": [
"mCaptcha",
"CAPTCHA",
"proof of work"
],
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"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"
},
"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"
}
],
"scripts": {
"build": "webpack --mode production",
"doc": "yarn typedoc src/index.ts",
"lint": "yarn run eslint src",
"start": "rimraf dist pkg && webpack-dev-server --open -d",
"test": "yarn jest"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/jsdom": "^21.1.4",
"@types/node": "^20.8.9",
"@types/sinon": "^10.0.20",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"copy-webpack-plugin": "^11.0.0",
"dart-sass": "^1.25.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}