-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 815 Bytes
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
{
"name": "tiny-pow",
"version": "1.0.4",
"description": "Tiny proof of work library for modern browsers",
"scripts": {
"build": "run-s minify build-module",
"minify": "uglifyjs --compress --mangle -o tiny-pow.min.js tiny-pow.js",
"build-module": "node build-es6-module"
},
"main": "tiny-pow.module.min.js",
"unpkg": "tiny-pow.module.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Rundik/tiny-pow.git"
},
"author": "Ivan Alexandrov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rundik/tiny-pow/issues"
},
"keywords": [
"pow",
"proof of work",
"sha256",
"browser"
],
"homepage": "https://github.com/Rundik/tiny-pow#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"uglify-js": "^3.13.4"
}
}