forked from hirosystems/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.29 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
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "blockstack",
"version": "17.2.0",
"description": "The Blockstack Javascript library for authentication, identity, and storage.",
"main": "lib/index",
"scripts": {
"browserify": "./node_modules/.bin/browserify lib/index.js --standalone blockstack -o ./dist/blockstack.js",
"browserify-tests": "./node_modules/.bin/browserify lib/index.js --standalone blockstack -o ./tests/browserTests/bundle.js",
"compile": "rm -rf lib; babel src -d lib",
"compile-tests": "rm -rf tests/unitTests/lib; rm -rf tests/authTests/lib; rm -rf test/operationsTests/lib; babel tests/unitTests/src -d tests/unitTests/lib; babel tests/authTests/src -d tests/authTests/lib; babel tests/operationsTests/src -d tests/operationsTests/lib;",
"prepublish": "npm run build",
"dev-auth": "npm run compile; npm run browserify; node ./tests/browserTests/auth-server.js",
"dev-proofs": "npm run compile; npm run browserify; node ./tests/browserTests/proofs-server.js",
"unit-test": "npm run lint && npm run flow && npm run compile && npm run compile-tests && npm run browserify && node ./tests/unitTests/lib/index.js",
"integration-test-auth": "npm run compile; npm run compile-tests; npm run browserify; node ./tests/authTests/lib/index.js",
"integration-test-ops": "npm run lint && npm run flow && npm run compile && npm run compile-tests && npm run browserify && node ./tests/operationsTests/lib/index.js",
"build": "npm run build-documentation && npm run compile && npm run browserify",
"flow": "flow",
"lint": "eslint src && eslint tests",
"test": "nyc --reporter=text npm run unit-test",
"documentation": "documentation",
"build-documentation": "./node_modules/.bin/documentation build src --config ./documentation.yml --format html --output docs; ./node_modules/.bin/documentation build src --config ./documentation.yml --format json --output docs.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack.js.git"
},
"author": {
"name": "Blockstack PBC",
"email": "[email protected]",
"url": "https://blockstack.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blockstack/blockstack.js/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": "Ryan Shea"
},
{
"name": "Larry Salibra"
},
{
"name": "Jude Nelson"
},
{
"name": "Aaron Blankstein"
}
],
"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",
"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",
"express": "^4.15.0",
"fetch-mock": "^5.5.0",
"flow-bin": "^0.49.1",
"mock-local-storage": "^1.0.5",
"nock": "^9.1.6",
"node-fetch": "^1.6.3",
"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",
"bitcoinjs-lib": "^3.3.0",
"cheerio": "^0.22.0",
"custom-protocol-detection-blockstack": "1.1.4",
"ecurve": "^1.0.6",
"elliptic": "^6.4.0",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"jsontokens": "^0.7.7",
"promise": "^7.1.1",
"query-string": "^4.3.2",
"request": "^2.79.0",
"ripemd160": "^2.0.1",
"schema-inspector": "^1.6.4",
"sprintf-js": "^1.0.3",
"uri-js": "^3.0.2",
"uuid": "^3.2.1",
"validator": "^7.0.0",
"zone-file": "^0.2.2"
},
"engines": {
"node": ">=6",
"npm": ">=5"
},
"nyc": {
"include": [
"lib/**"
]
}
}