mirror of
https://github.com/alexgo-io/stacks.js.git
synced 2026-04-29 09:45:50 +08:00
31 lines
969 B
JSON
31 lines
969 B
JSON
{
|
|
"name": "blockstack-proofs",
|
|
"version": "0.3.0",
|
|
"description": "A library for verifying proofs (twitter, github, domains etc) linked to a Blockstack ID",
|
|
"main": "lib/index",
|
|
"scripts": {
|
|
"compile": "rm -rf lib; babel --presets es2015 src -d lib",
|
|
"test": "npm run compile; npm run browserify; node lib/testing/index.js",
|
|
"prepublish": "npm run compile",
|
|
"browserify": "./node_modules/.bin/browserify lib/index.js --standalone BlockstackProofs -o ./src/testing/browser/blockstack-proofs.js"
|
|
},
|
|
"author": "Blockstack Inc.",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.4.5",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"blue-tape": "^1.0.0",
|
|
"browserify": "^13.1.1",
|
|
"fetch-mock": "^5.5.0",
|
|
"node-fetch": "^1.6.3",
|
|
"tape": "^4.6.3"
|
|
},
|
|
"dependencies": {
|
|
"isomorphic-fetch": "^2.2.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/blockstack/blockstack-proofs-js.git"
|
|
}
|
|
}
|