forked from hirosystems/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
181 lines (181 loc) · 5.42 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "blockstack",
"version": "19.4.0-beta.1",
"description": "The Blockstack Javascript library for authentication, identity, and storage.",
"main": "lib/index",
"unpkg": "dist/blockstack.js",
"prettier": "@blockstack/prettier-config",
"scripts": {
"build": "npm run build:node && npm run build:webpack && npm run build-documentation",
"build:webpack": "shx rm -rf dist/* && cross-env NODE_ENV=production webpack --mode=production",
"build:webpack:analyze": "shx rm -rf dist/* && cross-env NODE_ENV=production ANALYZE=true webpack --mode=production",
"build:webpack:watch": "shx rm -rf dist/* && cross-env NODE_ENV=development webpack --mode=development --watch --progress --info-verbosity verbose",
"build:node": "shx rm -rf lib && tsc -b tsconfig.build.json",
"build:node:watch": "shx rm -rf lib && tsc -b tsconfig.build.json --watch",
"prepare": "npm run build:node && npm run build:webpack",
"test": "npm run lint && cross-env NODE_ENV=test nyc node ./tests/unitTests/src/index.ts",
"integration-test-ops": "cross-env NODE_ENV=test nyc node ./tests/operationsTests/src/index.ts",
"dev-auth": "npm run build:webpack && ts-node ./tests/browserTests/auth-server.ts",
"dev-proofs": "npm run build:webpack && ts-node ./tests/browserTests/proofs-server.ts",
"prepublishOnly": "npm run test && npm run build",
"lint": "eslint --ext .ts ./src",
"lint:formatting": "prettier --check 'src/**/*.ts'",
"build-documentation": "shx rm -rf docs && cross-env typedoc --name \"blockstack.js $npm_package_version Library Reference\" --tsconfig tsconfig.typedoc.json --out docs src && cross-env typedoc --name \"blockstack.js $npm_package_version Library Reference\" --tsconfig tsconfig.typedoc.json --json docs/docs.json src",
"tsc": "tsc",
"codecovUpload": "codecov"
},
"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": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@blockstack/prettier-config": "0.0.3",
"@types/cheerio": "^0.22.10",
"@types/fetch-mock": "^5.8.0",
"@types/form-data": "^2.2.1",
"@types/node": "^10",
"@types/proxyquire": "^1.3.28",
"@types/ripemd160": "^2.0.0",
"@types/sinon": "^7.0.9",
"@types/tape": "^4.2.33",
"@types/triplesec": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"codecov": "^3.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.16.0",
"express": "^4.16.4",
"fetch-mock": "^5.5.0",
"mock-local-storage": "^1.1.8",
"node-fetch": "^1.6.3",
"nyc": "^14.1.1",
"opn": "^4.0.2",
"prettier": "^1.18.2",
"proxyquire": "^2.1.0",
"shx": "^0.3.2",
"sinon": "^7.2.7",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.10",
"tape": "^4.10.1",
"tape-promise": "^4.0.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"typedoc": "^0.15.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-assets-manifest": "^3.1.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@types/bn.js": "^4.11.5",
"@types/elliptic": "^6.4.9",
"ajv": "^4.11.5",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.1.2",
"bn.js": "^4.11.8",
"cheerio": "^0.22.0",
"cross-fetch": "^2.2.2",
"elliptic": "^6.4.1",
"form-data": "^2.3.3",
"jsontokens": "^2.0.2",
"query-string": "^6.3.0",
"request": "^2.88.0",
"ripemd160": "^2.0.2",
"schema-inspector": "^1.6.8",
"triplesec": "^3.0.26",
"uuid": "^3.3.2",
"zone-file": "^1.0.0"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"nyc": {
"all": true,
"cache": false,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"reporter": [
"text",
"html",
"lcov"
]
}
}