-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1003 Bytes
/
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
{
"name": "hashcasher",
"version": "0.1.0",
"description": "Protect online forms from spam by making them perform Proof of Work (PoW).",
"main": "contrib/middleware.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=test mocha --recursive",
"coverage": "NODE_ENV=test istanbul cover _mocha -- --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martindale/hashcasher.git"
},
"keywords": [
"hashcash",
"spam",
"fraud",
"forms",
"html",
"browser",
"proof-of-work"
],
"author": "Eric Martindale",
"license": "MIT",
"bugs": {
"url": "https://github.com/martindale/hashcasher/issues"
},
"homepage": "https://github.com/martindale/hashcasher#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"express": "^4.15.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"supertest": "^3.0.0"
},
"dependencies": {
"sha3": "^1.2.0"
}
}