-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 926 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 926 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
{
"name": "blockstack-profiles",
"version": "0.3.6",
"description": "A JSON profile system where objects are cryptographically signed and reference one-another",
"main": "lib/index",
"scripts": {
"compile": "rm -rf lib; babel --presets es2015 src -d lib",
"test": "npm run compile; node lib/testing/unitTests.js",
"prepublish": "npm run compile"
},
"author": "Halfmoon Labs, Inc.",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"tape": "^4.4.0"
},
"dependencies": {
"bigi": "^1.4.1",
"bitcoinjs-lib": "https://github.com/shea256/bitcoinjs-lib.git",
"blockstack-keychains": "0.0.4",
"blockstack-zones": "0.0.1",
"dateformat": "^1.0.12",
"ecurve": "https://github.com/shea256/ecurve.git",
"elliptic-curve": "^0.1.0",
"hasprop": "0.0.4",
"jwt-js": "^0.5.0",
"schema-inspector": "^1.6.4"
}
}