UNPKG

2.19 kBJSONView Raw
1{
2 "name": "blockstack-storage",
3 "version": "0.2.5",
4 "description": "The Blockstack Javascript library for storage.",
5 "main": "lib/index",
6 "scripts": {
7 "browserify": "./node_modules/.bin/browserify lib/index.js --standalone blockstack -o ./tests/storageTests/bundle.js",
8 "compile": "rm -rf lib; babel --presets es2015 src -d lib",
9 "compile-tests": "rm -rf tests/storageTests/lib; babel --presets es2015 tests/storageTests/src -d tests/storageTests/lib",
10 "prepare": "npm run compile",
11 "release": "npm version patch && npm publish",
12 "dev-build": "npm run compile; npm run compile-tests; npm run browserify;",
13 "integration-test-storage": "npm run compile; npm run compile-tests; npm run browserify; node ./tests/storageTests/lib/index.js",
14 "test": "echo 'Use the integration test framework; see circle.yml'; echo 'success!'"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/blockstack/blockstack-storage-js.git"
19 },
20 "author": {
21 "name": "Blockstack Inc.",
22 "email": "admin@blockstack.com",
23 "url": "https://blockstack.com"
24 },
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/blockstack/blockstack-storage-js/issues"
28 },
29 "keywords": [
30 "blockchain",
31 "bitcoin",
32 "bitcoin storage",
33 "bitcoin scaling",
34 "off-chain storage",
35 "crypto",
36 "cryptography",
37 "blockstack",
38 "blockstack auth",
39 "profile",
40 "identity",
41 "ethereum",
42 "storage",
43 "decentralized"
44 ],
45 "homepage": "https://blockstack.org",
46 "contributors": [
47 {
48 "name": "Jude Nelson"
49 },
50 {
51 "name": "Larry Salibra"
52 },
53 {
54 "name": "Ryan Shea"
55 }
56 ],
57 "devDependencies": {
58 "babel-cli": "^6.4.5",
59 "babel-preset-es2015": "^6.3.13",
60 "blockstack": "^0.2.22",
61 "blue-tape": "^1.0.0",
62 "browserify": "^13.1.1",
63 "express": "^4.15.0",
64 "fetch-mock": "^5.5.0",
65 "localstorage-polyfill": "^1.0.1",
66 "node-fetch": "^1.6.3",
67 "tape": "^4.6.3"
68 },
69 "dependencies": {
70 "ajv": "^4.11.5",
71 "bitcoinjs-lib": "^2.3.0",
72 "elliptic": "^6.4.0",
73 "isomorphic-fetch": "^2.2.1",
74 "jsontokens": "^0.7.4",
75 "uuid": "^3.0.1"
76 }
77}