-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
123 lines (123 loc) · 3.03 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "blockstack-cli",
"version": "0.0.1",
"description": "Node.js Blockstack CLI",
"main": "lib/index",
"scripts": {
"compile": "rm -rf lib; babel src -d lib",
"compile-tests": "rm -rf tests/unitTests/lib; babel tests/unitTests/src -d tests/unitTests/lib;",
"prepublish": "npm run build",
"unit-test": "npm run lint && npm run flow && npm run compile && npm run compile-tests && node ./tests/unitTests/lib/index.js",
"build": "npm run flow && npm run compile && npm run force-executable",
"flow": "flow || true",
"lint": "eslint src && eslint tests",
"test": "nyc --reporter=text npm run unit-test",
"force-executable": "test -f ./lib/index.js && chmod +x ./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcnelson/cli-blockstack.git"
},
"author": {
"name": "Jude Nelson",
"email": "[email protected]",
"url": "https://blockstack.com"
},
"license": "MIT",
"bin": {
"blockstack-cli": "./lib/index.js"
},
"bugs": {
"url": "https://github.com/jcnelson/cli-blockstack/issues"
},
"keywords": [
"blockchain",
"id",
"auth",
"authentication",
"bitcoin",
"blockchain auth",
"blockchain authentication",
"blockchainid",
"blockchain id",
"bitcoin auth",
"bitcoin authentication",
"bitcoin login",
"blockchain login",
"authorization",
"login",
"signin",
"sso",
"crypto",
"cryptography",
"token",
"blockstack",
"blockstack auth",
"profile",
"identity",
"ethereum"
],
"homepage": "https://blockstack.org",
"contributors": [
{
"name": "Jude Nelson"
}
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^6.0.4",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"blue-tape": "^1.0.0",
"bluebird": "^3.5.1",
"browserify": "^13.1.1",
"documentation": "^4.0.0-rc.1",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"fetch-mock": "^5.5.0",
"flow-bin": "^0.49.1",
"mock-local-storage": "^1.0.5",
"nock": "^9.1.6",
"node-fetch": "^2.1.2",
"nyc": "^11.4.1",
"opn": "^4.0.2",
"proxyquire": "^1.8.0",
"sinon": "^4.2.1",
"tape": "^4.6.3",
"tape-promise": "^2.0.1"
},
"dependencies": {
"ajv": "^4.11.5",
"bigi": "^1.4.2",
"bip39": "^2.5.0",
"bitcoinjs-lib": "^4",
"blockstack": "^18.0.4",
"blockstack-keychains": "^0.0.8",
"c32check": "^0.0.6",
"cors": "^2.8.4",
"cross-fetch": "^2.2.2",
"ecurve": "^1.0.6",
"es6-promise": "^4.2.4",
"express": "^4.15.0",
"express-winston": "^2.4.0",
"jsontokens": "^0.7.7",
"promise": "^7.1.1",
"request": "^2.79.0",
"ripemd160": "^2.0.1",
"triplesec": "^3.0.26",
"winston": "^2.3.1",
"zone-file": "^0.2.2"
},
"engines": {
"node": ">=6",
"npm": ">=5"
},
"nyc": {
"include": [
"lib/**"
]
}
}